ASCII: values are now class:data instead of class:word

FossilOrigin-Name: 48de84a700ed456e2311ff723a480acc81fb8fce763dd2fb7a55a20f28e144f2
This commit is contained in:
crc 2017-11-07 13:40:15 +00:00
parent 886d271da8
commit 55fb5ecf42
3 changed files with 19 additions and 19 deletions

File diff suppressed because one or more lines are too long

View file

@ -714,23 +714,23 @@ characters that aren't really intended to be printable. Retro has an
Note that `ASCII:HT` is the horizontal tab character.
~~~
:ASCII:NUL (-c) #0 ; :ASCII:SOH (-c) #1 ;
:ASCII:STX (-c) #2 ; :ASCII:ETX (-c) #3 ;
:ASCII:EOT (-c) #4 ; :ASCII:ENQ (-c) #5 ;
:ASCII:ACK (-c) #6 ; :ASCII:BEL (-c) #7 ;
:ASCII:BS (-c) #8 ; :ASCII:HT (-c) #9 ;
:ASCII:LF (-c) #10 ; :ASCII:VT (-c) #11 ;
:ASCII:FF (-c) #12 ; :ASCII:CR (-c) #13 ;
:ASCII:SO (-c) #14 ; :ASCII:SI (-c) #15 ;
:ASCII:DLE (-c) #16 ; :ASCII:DC1 (-c) #17 ;
:ASCII:DC2 (-c) #18 ; :ASCII:DC3 (-c) #19 ;
:ASCII:DC4 (-c) #20 ; :ASCII:NAK (-c) #21 ;
:ASCII:SYN (-c) #22 ; :ASCII:ETB (-c) #23 ;
:ASCII:CAN (-c) #24 ; :ASCII:EM (-c) #25 ;
:ASCII:SUB (-c) #26 ; :ASCII:ESC (-c) #27 ;
:ASCII:FS (-c) #28 ; :ASCII:GS (-c) #29 ;
:ASCII:RS (-c) #30 ; :ASCII:US (-c) #31 ;
:ASCII:SPACE (-c) #32 ; :ASCII:DEL (-c) #127 ;
#0 'ASCII:NUL const #1 'ASCII:SOH const
#2 'ASCII:STX const #3 'ASCII:ETX const
#4 'ASCII:EOT const #5 'ASCII:ENQ const
#6 'ASCII:ACK const #7 'ASCII:BEL const
#8 'ASCII:BS const #9 'ASCII:HT const
#10 'ASCII:LF const #11 'ASCII:VT const
#12 'ASCII:FF const #13 'ASCII:CR const
#14 'ASCII:SO const #15 'ASCII:SI const
#16 'ASCII:DLE const #17 'ASCII:DC1 const
#18 'ASCII:DC2 const #19 'ASCII:DC3 const
#20 'ASCII:DC4 const #21 'ASCII:NAK const
#22 'ASCII:SYN const #23 'ASCII:ETB const
#24 'ASCII:CAN const #25 'ASCII:EM const
#26 'ASCII:SUB const #27 'ASCII:ESC const
#28 'ASCII:FS const #29 'ASCII:GS const
#30 'ASCII:RS const #31 'ASCII:US const
#32 'ASCII:SPACE const #127 'ASCII:DEL const
~~~
These words operate on character values. Retro currently deals with

BIN
ngaImage

Binary file not shown.