blob: aa61220afbc5d2e829c15352f2f086770254072a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
--- main.c.orig Tue Jan 9 13:00:03 1996
+++ main.c Tue Aug 15 20:41:41 2000
@@ -10,7 +10,11 @@
#include "apple.h"
#include <curses.h>
#define REF_DELAY 2000
+
+/* Where is the default rom file?? */
+#ifndef ROMFILE
#define ROMFILE "apple.rom"
+#endif
extern char prodosroot[];
@@ -24,7 +28,7 @@
exit (1);
}
-void main (int argc,char **argv)
+int main (int argc,char **argv)
{
short int byte;
int i, addr; /* Loop iterators */
|