mirror of
https://github.com/libretro/PUAE.git
synced 2024-11-23 07:49:45 +00:00
puae 2.5.0 b18
This commit is contained in:
parent
1915f1c498
commit
d87399cfde
@ -9,7 +9,7 @@ cd32=" --enable-cd32 "
|
||||
a600=" --enable-gayle "
|
||||
scsi=" --enable-scsi-device --enable-ncr --enable-a2091 "
|
||||
other=" --with-caps --enable-amax --enable-gccopt --enable-serial-port "
|
||||
debug=" --enable-profiling "
|
||||
debug=""
|
||||
#
|
||||
#
|
||||
./bootstrap.sh
|
||||
|
@ -15,6 +15,10 @@
|
||||
* Copyright 1996, 1997 Bernd Schmidt
|
||||
*/
|
||||
|
||||
#define TRUE 1
|
||||
#define FALSE 0
|
||||
#define UAE_RAND_MAX RAND_MAX
|
||||
|
||||
#define ECS_DENISE
|
||||
|
||||
#ifdef JIT
|
||||
|
@ -335,7 +335,7 @@ uae_u8 serial_readstatus(uae_u8 ignored)
|
||||
}
|
||||
#endif
|
||||
return status;
|
||||
}
|
||||
}
|
||||
|
||||
uae_u8 serial_writestatus (uae_u8 old, uae_u8 nw)
|
||||
{
|
||||
@ -361,7 +361,9 @@ void serial_open(void)
|
||||
if ((sd = open (currprefs.sername, O_RDWR|O_NONBLOCK|O_BINARY, 0)) < 0) {
|
||||
write_log (_T("Error: Could not open Device %s\n"), currprefs.sername);
|
||||
return;
|
||||
}
|
||||
} else {
|
||||
write_log (_T("Serial device %s opened.\n"), currprefs.sername);
|
||||
}
|
||||
|
||||
serdev = 1;
|
||||
|
||||
|
@ -466,8 +466,3 @@
|
||||
/* Define to empty if the keyword `volatile' does not work. Warning: valid
|
||||
code using `volatile' can become incorrect without. Disable with care. */
|
||||
#undef volatile
|
||||
|
||||
#define UAE_RAND_MAX RAND_MAX
|
||||
#define TRUE 1
|
||||
#define FALSE 0
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user