mirror of
https://github.com/jscrane/r65emu.git
synced 2024-11-16 21:10:58 +00:00
fix typo
This commit is contained in:
parent
7f8a15d22a
commit
77399f8d43
@ -12,12 +12,12 @@ SpiRAM spiRam(SPIRAM_DEV, SPIRAM_CS);
|
||||
|
||||
void spiram::operator=(uint8_t b)
|
||||
{
|
||||
spiRam.write_uint8_t(_acc, b);
|
||||
spiRam.write_byte(_acc, b);
|
||||
}
|
||||
|
||||
spiram::operator uint8_t()
|
||||
{
|
||||
return spiRam.read_uint8_t(_acc);
|
||||
return spiRam.read_byte(_acc);
|
||||
}
|
||||
|
||||
void spiram::checkpoint(Stream &s)
|
||||
|
Loading…
Reference in New Issue
Block a user