c64 0.1.0-alpha.0

Driver for the Commodore 64 platform
1
2
3
4
5
6
7
void disable_interrupts() {
    asm volatile("sei");
}

void enable_interrupts() {
    asm volatile("cli");
}