diff options
author | Kartik Agaram <vc@akkartik.com> | 2019-05-25 00:37:54 -0700 |
---|---|---|
committer | Kartik Agaram <vc@akkartik.com> | 2019-05-25 00:37:54 -0700 |
commit | 7c06e10d9dc30c581d69fe0e935caf865beea13a (patch) | |
tree | c2768ad78122e7341becbfe5f759e9a18d25a032 /subx | |
parent | 886097ad8c8df08160f130be937b5493185f9c38 (diff) | |
download | mu-7c06e10d9dc30c581d69fe0e935caf865beea13a.tar.gz |
.
Diffstat (limited to 'subx')
-rw-r--r-- | subx/073next-token.subx | 2 | ||||
-rw-r--r-- | subx/074print-int-decimal.subx | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/subx/073next-token.subx b/subx/073next-token.subx index a7a894e3..83abc556 100644 --- a/subx/073next-token.subx +++ b/subx/073next-token.subx @@ -1,3 +1,5 @@ +# Some tokenization primitives. + == code # instruction effective address register displacement immediate # . op subop mod rm32 base index scale r32 diff --git a/subx/074print-int-decimal.subx b/subx/074print-int-decimal.subx index 04385795..07b58a13 100644 --- a/subx/074print-int-decimal.subx +++ b/subx/074print-int-decimal.subx @@ -7,7 +7,6 @@ #? Entry: # run a single test, while debugging #? e8/call test-print-int32-decimal-negative/disp32 -#? #? # syscall(exit, Num-test-failures) #? 8b/copy 0/mod/indirect 5/rm32/.disp32 . . 3/r32/EBX Num-test-failures/disp32 # copy *Num-test-failures to EBX #? b8/copy-to-EAX 1/imm32/exit |