This commit is contained in:
Kartik Agaram 2018-11-30 10:37:14 -08:00
parent 2b7ba2a56a
commit e9661581f0
2 changed files with 11 additions and 10 deletions

View File

@ -1,7 +1,8 @@
# Port of https://github.com/akkartik/crenshaw/blob/master/tutor2.1.pas
# Corresponds to the section "single digits" in https://compilers.iecc.com/crenshaw/tutor2.txt
# which corresponds to the section "single digits" in https://compilers.iecc.com/crenshaw/tutor2.txt
# except that we support hex digits.
#
# To run (from the subx directory):
# To run (from the subx/ directory):
# $ ./subx translate *.subx apps/crenshaw2-1.subx -o crenshaw2-1
# $ echo '3' |./subx run apps/crenshaw2-1
# Expected output:
@ -607,8 +608,8 @@ $is-digit?:end:
== data
Look:
00 00 00 00
Look: # (char)
00 00 00 00 # = 0
_test-output-stream:
# current write index

View File

@ -1,8 +1,8 @@
## Port of https://github.com/akkartik/crenshaw/blob/master/tutor2.1.pas
# Corresponds to the section "single digits" in https://compilers.iecc.com/crenshaw/tutor2.txt
# except that we support numbers of multiple digits.
# Port of https://github.com/akkartik/crenshaw/blob/master/tutor2.1.pas
# which corresponds to the section "single digits" in https://compilers.iecc.com/crenshaw/tutor2.txt
# except that we support hex numbers of multiple digits.
#
# To run (from the subx directory):
# To run (from the subx/ directory):
# $ ./subx translate *.subx apps/crenshaw2-1b.subx -o crenshaw2-1b
# $ echo '1a' |./subx run apps/crenshaw2-1b
# Expected output:
@ -810,8 +810,8 @@ $is-digit?:end:
== data
Look:
00 00 00 00
Look: # (char)
00 00 00 00 # = 0
_test-output-stream:
# current write index