diff options
author | Dimitri Sokolyuk <demon@dim13.org> | 2018-02-11 16:53:19 +0100 |
---|---|---|
committer | Dimitri Sokolyuk <demon@dim13.org> | 2018-02-11 16:53:19 +0100 |
commit | 63ae548ee0280d01ae8a7336460d24188a49afed (patch) | |
tree | a17586fa05e937540b1c4f0840ec504381fee771 /core.go | |
parent | 8323a6a2053e0ec9d98ede95c7c5d5820f4509f1 (diff) |
fix mem comment
Diffstat (limited to 'core.go')
-rw-r--r-- | core.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -21,7 +21,7 @@ type Console interface { // // memory: 0x2000 words (16k) addressed by byte type Core struct { - memory [0x2000]uint16 // 0..0x3fff main memory, 0x4000 .. 0xffff mem-mapped i/o + memory [0x2000]uint16 // 0..0x3fff RAM, 0x4000..0x7fff mem-mapped I/O pc uint16 // 13 bit st0 uint16 // top of data stack d, r stack // data and return stacks |