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