Documentation

This commit is contained in:
Remko Tronçon 2022-05-30 23:43:52 +02:00
parent fbf7f9b319
commit d7018a10df

View file

@ -73,8 +73,8 @@
;; ;;
;; Memory size: ;; Memory size:
;; MEMORY_SIZE := 104857600 (100*1024*1024) ;; MEMORY_SIZE := 104857600 (100*1024*1024)
;; MEMORY_SIZE_PAGES := 1600 (MEMORY_SIZE / 65536) ;; MEMORY_SIZE_PAGES := 1600 (MEMORY_SIZE / 65536)
;; ;;
;; Memory layout: ;; Memory layout:
;; INPUT_BUFFER_BASE := 0x300 ;; INPUT_BUFFER_BASE := 0x300
@ -85,9 +85,10 @@
;; STACK_BASE := 0x10000 ;; STACK_BASE := 0x10000
;; DATA_SPACE_BASE := 0x20000 ;; DATA_SPACE_BASE := 0x20000
;; ;;
;; PICTURED_OUTPUT_OFFSET := 0x200 (offset from HERE; filled backward) ;; Transient regions, offset from HERE:
;; WORD_OFFSET := 0x200 (offset from HERE) ;; PICTURED_OUTPUT_OFFSET := 0x200 (filled backward)
;; PAD_OFFSET := 0x304 (offset from HERE) ;; WORD_OFFSET := 0x200
;; PAD_OFFSET := 0x304 (WORD_OFSET + 1 + 0xFF)
;; ;;
(memory (export "memory") 0x640 (; = MEMORY_SIZE_PAGES ;)) (memory (export "memory") 0x640 (; = MEMORY_SIZE_PAGES ;))