about summary refs log tree commit diff stats
path: root/subx/020syscalls.cc
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2018-10-01 22:48:50 -0700
committerKartik Agaram <vc@akkartik.com>2018-10-01 22:48:50 -0700
commit29ab43973a2e9822d84b564e314b4af5c58c4684 (patch)
tree8af49d966c5a1aa05da1e9d2c631085198e91c0d /subx/020syscalls.cc
parent839dc88dc0439ae3f32c8c0f7650f32b09f311cc (diff)
downloadmu-29ab43973a2e9822d84b564e314b4af5c58c4684.tar.gz
4648
Diffstat (limited to 'subx/020syscalls.cc')
-rw-r--r--subx/020syscalls.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/subx/020syscalls.cc b/subx/020syscalls.cc
index 5fdc40f6..c94785bd 100644
--- a/subx/020syscalls.cc
+++ b/subx/020syscalls.cc
@@ -82,6 +82,7 @@ void process_int80() {
     // Ignore most arguments for now: address hint, protection flags, sharing flags, fd, offset.
     // We only support anonymous maps.
     Reg[EAX].u = new_segment(/*length*/read_mem_u32(Reg[EBX].u+0x4));
+    trace(91, "run") << "result: " << Reg[EAX].u << end();
     break;
   default:
     raise << HEXWORD << EIP << ": unimplemented syscall " << Reg[EAX].u << '\n' << end();