mirror of
https://github.com/jscrane/r65emu.git
synced 2024-12-13 19:30:00 +00:00
fix warnings
This commit is contained in:
parent
7c9b978012
commit
1cf4c02039
@ -84,7 +84,6 @@ void flash_filer::stop()
|
||||
|
||||
const char *flash_filer::advance() {
|
||||
#if defined(USE_SPIFFS) || defined(USE_LITTLEFS)
|
||||
bool rewound = false;
|
||||
files[_current].close();
|
||||
#if defined(USE_LITTLEFS)
|
||||
static char buf[32];
|
||||
@ -98,6 +97,7 @@ const char *flash_filer::advance() {
|
||||
strncpy(buf, dir.fileName().c_str(), sizeof(buf));
|
||||
return buf;
|
||||
#else
|
||||
bool rewound = false;
|
||||
while (true) {
|
||||
files[_current] = dir.openNextFile();
|
||||
if (files[_current]) {
|
||||
@ -126,9 +126,11 @@ const char *flash_filer::rewind() {
|
||||
}
|
||||
|
||||
#if !defined(NO_CHECKPOINT)
|
||||
#if defined(USE_SPIFFS)
|
||||
static char buf[32];
|
||||
static char chkpt[] = { "CHKPOINT" };
|
||||
static int cpid = 0;
|
||||
#endif
|
||||
|
||||
const char *flash_filer::checkpoint() {
|
||||
#if defined(USE_SPIFFS)
|
||||
|
6
pia.h
6
pia.h
@ -5,9 +5,9 @@
|
||||
// https://en.wikipedia.org/wiki/Peripheral_Interface_Adapter
|
||||
class PIA {
|
||||
public:
|
||||
PIA(): outb(0), inb(0), crb(0), outa(0), ina(0), cra(0), ddrb(0), ddra(0),
|
||||
ca1(false), ca2(false), cb1(false), cb2(false),
|
||||
irq_a1(false), irq_a2(false), irq_b1(false), irq_b2(false) {}
|
||||
PIA(): cra(0), ina(0), outa(0), ddra(0), crb(0), inb(0), outb(0), ddrb(0),
|
||||
ca1(false), ca2(false), irq_a1(false), irq_a2(false),
|
||||
cb1(false), cb2(false), irq_b1(false), irq_b2(false) {}
|
||||
|
||||
virtual void reset() {
|
||||
outb = inb = crb = ddrb = outa = ina = cra = ddra = 0;
|
||||
|
@ -11,7 +11,7 @@ static uint8_t DataPin;
|
||||
|
||||
// The ISR for the external interrupt
|
||||
#if defined(ESP32) || defined(ESP8266)
|
||||
ICACHE_RAM_ATTR
|
||||
IRAM_ATTR
|
||||
#endif
|
||||
void ps2interrupt(void)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user