Fixed STPC PCI IRQ steering and silenced the massive Voodoo warning.

This commit is contained in:
OBattler
2020-07-10 03:10:07 +02:00
parent 72c1c36ec6
commit fec5160bf4
3 changed files with 6 additions and 4 deletions

View File

@@ -41,7 +41,8 @@ static int last_block[2] = {0, 0};
static int next_block_to_write[2] = {0, 0};
#define addbyte(val) \
code_block[block_pos++] = val; \
if (block_pos < BLOCK_SIZE) \
code_block[block_pos++] = val; \
if (block_pos >= BLOCK_SIZE) \
fatal("Over!\n")