about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--Readme.md13
1 files changed, 6 insertions, 7 deletions
diff --git a/Readme.md b/Readme.md
index c9225d47..ac06c7c5 100644
--- a/Readme.md
+++ b/Readme.md
@@ -328,19 +328,18 @@ distinguish between code and data. Correspondingly, SubX programs consist of a
 series of segments, each starting with a header line: `==` followed by a name
 and approximate starting address.
 
-All code must lie in a segment called 'code'. Execution begins at the start of
-the `code` segment by default.
+All code must lie in a segment called 'code'.
 
-You can reuse segment names:
+Segments can be added to.
 
-```
-== code
+```sh
+== code 0x09000000  # first mention requires starting address
 ...A...
 
-== data
+== data 0x0a000000
 ...B...
 
-== code
+== code             # no address necessary when adding
 ...C...
 ```
 
^
bd2affaa ^

9a524793 ^






a7088a2f ^
30b2fcf8 ^


784e17d4 ^
e2e0f5cc ^

05c2f62a ^
e2e0f5cc ^

784e17d4 ^
e2e0f5cc ^



784e17d4 ^

e2e0f5cc ^

784e17d4 ^
30b2fcf8 ^

e2e0f5cc ^

e2a0b440 ^
e2e0f5cc ^
e2a0b440 ^

e2e0f5cc ^
784e17d4 ^
e2e0f5cc ^
784e17d4 ^


9a524793 ^
32241605 ^
9a524793 ^



32241605 ^
ac8b37f9 ^



c7db6a16 ^
9a524793 ^
7b5ad602 ^
32241605 ^
9a524793 ^
32241605 ^
9a524793 ^

6e1eeeeb ^
9a524793 ^

46bb1d31 ^
7817fdb2 ^






30b2fcf8 ^
9a524793 ^
ef401599 ^
9a524793 ^

8f9ec2fb ^
7817fdb2 ^






f8a4a457 ^
9a524793 ^
9f589350 ^
9a524793 ^






6e1eeeeb ^
9a524793 ^
6e1eeeeb ^
9a524793 ^
2c9aa92f ^
9a524793 ^
797a46d5 ^
9a524793 ^
797a46d5 ^
7817fdb2 ^









e420279a ^
9a524793 ^
e9e06638 ^
9a524793 ^
b338e82e ^




e2e0f5cc ^
b338e82e ^

9a524793 ^
6e1eeeeb ^
9a524793 ^
4f33ff22 ^
9a524793 ^

4f33ff22 ^
9a524793 ^
d0a1e1b6 ^
7b5ad602 ^
bb1a1ac2 ^
9a524793 ^

bb1a1ac2 ^
9a524793 ^

bb1a1ac2 ^
9a524793 ^

bb1a1ac2 ^
9a524793 ^
924ed08a ^
9a524793 ^

b7b6ee50 ^
9a524793 ^
bb1a1ac2 ^
9a524793 ^
a7088a2f ^
784e17d4 ^









784e17d4 ^


784e17d4 ^



52564867 ^

9a524793 ^


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196