Apple IIe config figured out

This commit is contained in:
Luxferre
2022-08-14 21:26:04 +03:00
parent 71eb5bafa8
commit 984ced3396
3 changed files with 8 additions and 19 deletions
+1 -1
View File
@@ -441,7 +441,7 @@ void portIO(ushort port, ushort p2, ushort p1) {
ushort equi_find_free_task_slot() {
ushort slotid = 0;
/* iterate over task table */
for(;slotid < EQUI_TASKS_MAX;slotid++)
for(;slotid < EQUI_TASKS_MAX;++slotid)
if(!ram.tasks[slotid].active)
return slotid;
/* and error out if all slots are busy and active */