Step 6502 CPU while polling for USB between each instruction

This commit is contained in:
Satoshi N. M 2018-01-15 11:21:42 -08:00
parent 173981df79
commit e99cb9b068
1 changed files with 8 additions and 4 deletions

View File

@ -86,9 +86,7 @@ static const char *usb_strings[] = {
static bool paused = true;
void sys_tick_handler(void)
{
if (paused) return;
step6502();
gpio_toggle(GPIOC, GPIO13);
// TODO: measure frequency
}
@ -202,7 +200,13 @@ int main(void)
reset6502();
while (1)
while (1) {
usbd_poll(usbd_dev);
if (!paused) {
step6502();
gpio_toggle(GPIOC, GPIO13);
}
}
}