about summary refs log tree commit diff stats
path: root/subx/010core.cc
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2018-07-11 07:45:45 -0700
committerKartik Agaram <vc@akkartik.com>2018-07-11 07:45:45 -0700
commit6f812e6ea125aadd2e0891b094902b34924dccd0 (patch)
tree13bb9407ac6239f9c02d94fc9de051368a00d6dc /subx/010core.cc
parent262f6ea81bcd058e6507dfca8cc7e72251fa6f34 (diff)
downloadmu-6f812e6ea125aadd2e0891b094902b34924dccd0.tar.gz
4342
Diffstat (limited to 'subx/010core.cc')
-rw-r--r--subx/010core.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/subx/010core.cc b/subx/010core.cc
index c881c52b..67fff68f 100644
--- a/subx/010core.cc
+++ b/subx/010core.cc
@@ -193,6 +193,8 @@ void run_one_instruction() {
   }
 }
 
+// Load regions of memory (called 'segments') with given hex values based on
+// '-- ' section headers.
 void load_program(const string& text_bytes) {
   istringstream in(text_bytes);
   load_program(in);