about summary refs log tree commit diff stats
path: root/subx/ex1.2.subx
Commit message (Collapse)AuthorAgeFilesLines
* 4467Kartik Agaram2018-08-031-6/+6
|
* 4446Kartik Agaram2018-07-271-3/+6
|
* 4431 - operate exclusively in hexKartik Agaram2018-07-261-2/+2
| | | | | | | | | Was confusing having numbers without an explicit base sometimes be hex and sometimes not, based on their metadata. By convention I don't bother with the '0x' for instructions, or for single-digit numbers that are equal to their decimal representation. But I could and it would still work.
* 4424Kartik Agaram2018-07-261-6/+6
| | | | Clean up format of example programs.
* 4351Kartik Agaram2018-07-161-0/+1
|
* 4350Kartik Agaram2018-07-151-0/+1
| | | | | | | Reorganize layers to introduce the translation workflow right at the start. We also avoid duplicating parsing code. Programs are always parsed into the `program` data structure.
* 4325Kartik Agaram2018-07-071-0/+1
|
* 4320Kartik Agaram2018-07-071-1/+1
| | | | Fix a few more typos in example programs.
* 4304Kartik Agaram2018-07-011-3/+3
|
* 4303 - subx: first real transformKartik Agaram2018-07-011-0/+14
We'll see if this is useful. Mostly just stretching our legs.
='#n205'>205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253