fork of PCE focusing on macplus, supporting DaynaPort SCSI network emulation
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

8086: Remove the reset_flags field from the context

It's a useless feature.

+1 -5
+1 -3
src/cpu/e8086/e8086.c
··· 90 90 c->int_cs = 0; 91 91 c->int_ip = 0; 92 92 93 - c->reset_flags = 0; 94 - 95 93 for (i = 0; i < 256; i++) { 96 94 c->op[i] = e86_opcodes[i]; 97 95 } ··· 463 461 464 462 e86_set_cs (c, 0xf000); 465 463 e86_set_ip (c, 0xfff0); 466 - e86_set_flags (c, c->reset_flags); 464 + e86_set_flags (c, 0x0000); 467 465 468 466 c->save_flags = 0; 469 467
-2
src/cpu/e8086/e8086.h
··· 159 159 unsigned short int_cs; 160 160 unsigned short int_ip; 161 161 162 - unsigned short reset_flags; 163 - 164 162 e86_opcode_f op[256]; 165 163 166 164 struct {