diff options
author | alekseiplusplus <alekseijeaves@protonmail.com> | 2023-11-30 14:36:15 +1100 |
---|---|---|
committer | alekseiplusplus <alekseijeaves@protonmail.com> | 2023-11-30 14:36:15 +1100 |
commit | d0f5e175f713a52d76d102780e0b899f3984c416 (patch) | |
tree | cfb4b030b186bf3dd4a155a78a9b232e4d971139 /src/main.c | |
parent | 401a2171b1fa2bcc077934191cc609208368152e (diff) |
overall progress
Diffstat (limited to 'src/main.c')
-rw-r--r-- | src/main.c | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -1,6 +1,7 @@ #include "apple.h" #include "video/interface.h" #include <ncurses.h> +#include <unistd.h> int main() { @@ -9,7 +10,9 @@ int main() { AppleOn(); while(1) { - TerminalInput( UserInput() ); + CallInstructionTable(GetMemory(PC), 0); + PrintInfo(); + sleep(1); } TerminalClose(); |