Fix blk overflow in usage guide index
This commit is contained in:
parent
a2136e604d
commit
581c6d015c
5
blk/003
5
blk/003
@ -10,8 +10,7 @@ the dictionary (B30) for a word reference.
|
|||||||
|
|
||||||
Contents
|
Contents
|
||||||
|
|
||||||
4 Number literals 6 Compilation vs meta-comp.
|
5 Number literals 6 Compilation vs meta-comp.
|
||||||
8 Interpreter I/O 11 Signed-ness
|
8 Interpreter I/O 11 Signed-ness
|
||||||
14 Addressed devices 17 DOES>
|
14 Addressed devices 17 DOES>
|
||||||
18 Disk blocks 21 How blocks are organized
|
18 Disk blocks (cont.)
|
||||||
22 Addressed devices
|
|
||||||
|
12
blk/004
12
blk/004
@ -1,11 +1 @@
|
|||||||
Number literals
|
21 How blocks are organized 22 Addressed devices
|
||||||
|
|
||||||
Traditional Forth often use HEX/DEC switches to go from decimal
|
|
||||||
to hexadecimal parsing. Collapse OS parses literals in a way
|
|
||||||
that is closer to C.
|
|
||||||
|
|
||||||
Straight numbers are decimals, numbers starting with "0x"
|
|
||||||
are hexadecimals (example "0x12ef"), "0b" prefixes indicate
|
|
||||||
binary (example "0b1010"), char literals are single characters
|
|
||||||
surrounded by ' (example 'X'). Char literals can't be used for
|
|
||||||
whitespaces.
|
|
||||||
|
12
blk/005
Normal file
12
blk/005
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
Number literals
|
||||||
|
|
||||||
|
Traditional Forth often use HEX/DEC switches to go from decimal
|
||||||
|
to hexadecimal parsing. Collapse OS parses literals in a way
|
||||||
|
that is closer to C.
|
||||||
|
|
||||||
|
Straight numbers are decimals, numbers starting with "0x"
|
||||||
|
are hexadecimals (example "0x12ef"), "0b" prefixes indicate
|
||||||
|
binary (example "0b1010"), char literals are single characters
|
||||||
|
surrounded by ' (example 'X'). Char literals can't be used for
|
||||||
|
whitespaces.
|
||||||
|
|
Loading…
Reference in New Issue
Block a user