- [NEW] EAR getter in the ULA module

- [NEW] Flash attribute implemented
- [NEW] Sound somewhat working (BEEP hangs)
This commit is contained in:
2024-04-15 20:47:00 +02:00
parent 6dfb24da10
commit 2d0b0e45cc
5 changed files with 64 additions and 3 deletions

View File

@@ -92,7 +92,9 @@ namespace zx_ula
border_color = val & 0x7;
mic = (val>>3)&0x1;
ear = (val>>4)&0x1;
//printf("EAR:%i MIC:%i\n", ear, mic);
}
uint8_t get_border_color() { return border_color; }
uint8_t get_ear() { return ear; }
}