Ignore Nanos6 progress events

This commit is contained in:
Rodrigo Arias 2023-03-21 10:15:14 +01:00 committed by Rodrigo Arias Mallo
parent 96cfd6247e
commit 74f253b575

View File

@ -24,6 +24,10 @@ static const int ss_table[256][256][3] = {
['R'] = { CHSS, POP, ST_RESUME }, ['R'] = { CHSS, POP, ST_RESUME },
['*'] = { CHSS, IGN, -1 }, ['*'] = { CHSS, IGN, -1 },
}, },
['P'] = { /* TODO: Ignore progress events for now */
['r'] = { CHSS, IGN, -1 },
['p'] = { CHSS, IGN, -1 },
},
['C'] = { ['C'] = {
['['] = { CHSS, PUSH, ST_TASK_CREATING }, ['['] = { CHSS, PUSH, ST_TASK_CREATING },
[']'] = { CHSS, POP, ST_TASK_CREATING }, [']'] = { CHSS, POP, ST_TASK_CREATING },
@ -497,6 +501,7 @@ process_ev(struct emu *emu)
case 'B': case 'B':
case 'W': case 'W':
case 'M': case 'M':
case 'P':
return simple(emu); return simple(emu);
case 'T': case 'T':
return pre_task(emu); return pre_task(emu);