We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 63ce225 commit bdbe8efCopy full SHA for bdbe8ef
apple1basic.c
@@ -31,8 +31,8 @@ init_monitor()
31
32
void
33
charout(char ch) {
34
- unsigned short S = readSP();
35
- unsigned char a = 1 + memory[0x0100+S+1] | memory[0x0100+((S+2) & 0xFF)] << 8;
+ unsigned char S = readSP();
+ unsigned short a = 1 + memory[0x0100+S+1] | memory[0x0100+((S+2) & 0xFF)] << 8;
36
37
/*
38
* Apple I BASIC prints every character received
@@ -125,7 +125,7 @@ main()
125
if (!clk)
126
handle_monitor();
127
128
-// chipStatus();
+ chipStatus();
129
//if (!(cycle % 1000)) printf("%d\n", cycle);
130
};
131
}
0 commit comments