1
0
mirror of https://github.com/Interlisp/maiko.git synced 2026-02-26 16:53:30 +00:00

clean up table format, add header

This commit is contained in:
Nick Briggs
2020-09-16 15:16:52 -07:00
parent 4f3e4e48c6
commit 11690d0f9c

View File

@@ -1,3 +1,4 @@
# CDR CODING in cons cells
The cdr-code is a 4-bit field of a 32-bit cons cell.
It is treated as an on-page indicator bit and a 3-bit scaled offset.
@@ -11,6 +12,3 @@ on-page| offset | interpretation
1 | 1 - 7 | CDR is at 2*offset (counted in 32-bit cells) on same page
0 | 0 | CDR is indirect, CDR(car)
0 | 1 - 7 | CDR is not a cons cell but is in the car of cell at 2*offset on same page
-------|--------|----------------------------------------------------------------------------