Thank you akkartik for spotting the typo

This commit is contained in:
Jeremiah Orians 2018-09-19 21:58:03 -04:00
parent 67cc824a40
commit 98f75d7b6a
No known key found for this signature in database
GPG Key ID: 7457821534D2ACCD
2 changed files with 5 additions and 3 deletions

2
README
View File

@ -50,8 +50,10 @@ The only pieces that have any external dependencies are the Web IDE (Python3+Che
* Future
** Software
Add more ports to more hardware platforms
** Hardware
Implement the Knight processor in FPGA and then convert into TTL
* Need to know information
** stage0

View File

@ -22,8 +22,8 @@
;; Each being the length of a register [32bits]
;;
;; STACK space: End of program -> 1MB (0x100000)
;; HEAP space: 1MB -> End of Memory (2MB (0x200000))
;; STACK space: End of program -> 512KB (0x80000) [Could be reduced]
;; HEAP space: 512KB -> End of Memory
;; R15 is the STACK pointer
;; R14 is the HEAP pointer
@ -74,7 +74,7 @@
;; Pointer to initial HEAP ADDRESS
:HEAP
'00180000'
'00080000'
;; Output strings
:header_string1