mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
c774e181e3
A text based Apple IIe ProDOS emulator. PR: 2817 Submitted by: Joel Sutton <sutton@aardvark.apana.org.au>
28 lines
533 B
Plaintext
28 lines
533 B
Plaintext
diff -rc prodosemu-v0.1/main.c prodosemu/main.c
|
|
*** main.c Tue Jan 9 15:00:03 1996
|
|
--- main.c Tue Feb 18 09:43:54 1997
|
|
***************
|
|
*** 9,16 ****
|
|
|
|
#include "apple.h"
|
|
#include <curses.h>
|
|
#define REF_DELAY 2000
|
|
! #define ROMFILE "apple.rom"
|
|
|
|
extern char prodosroot[];
|
|
|
|
--- 9,21 ----
|
|
|
|
#include "apple.h"
|
|
#include <curses.h>
|
|
+
|
|
#define REF_DELAY 2000
|
|
!
|
|
! /* Where is the default rom file?? */
|
|
! #ifndef ROMFILE
|
|
! #define ROMFILE "/usr/local/lib/apple2/prodos-2e.rom"
|
|
! #endif
|
|
|
|
extern char prodosroot[];
|
|
|