summaryrefslogtreecommitdiff
path: root/emux64/src/main.c
diff options
context:
space:
mode:
authorIan Moffett <ian@osmora.org>2025-10-12 22:03:32 -0400
committerIan Moffett <ian@osmora.org>2025-10-12 22:03:32 -0400
commit25c0a696a3a7fe547fd69ff505759cf0e222927d (patch)
treedc6e5f4e9e2286cfcffadc755715e9f6f802051c /emux64/src/main.c
parent3f439e5c66e8366fddccc225ee82a2cfe21d755b (diff)
emux64: cpu: Add initial CPU cycle loop w/ HLT
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'emux64/src/main.c')
-rw-r--r--emux64/src/main.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/emux64/src/main.c b/emux64/src/main.c
index 8c42655..b8d39b4 100644
--- a/emux64/src/main.c
+++ b/emux64/src/main.c
@@ -74,11 +74,7 @@ run(struct osmx_core *core)
return error;
}
- printf("ROM: ");
- for (int i = 0; i < g_firmware.length; ++i) {
- printf("%02X ", g_firmware.buf[i]);
- }
- printf("\n");
+ cpu_run(core);
}
int