Fri, 04 Mar 2011 00:41:52 +0000
add Error Enable bit to system state
src/state.c | file | annotate | diff | revisions | |
src/state.h | file | annotate | diff | revisions |
1.1 diff -r d6f699f89303 -r e20f02519835 src/state.c 1.2 --- a/src/state.c Thu Mar 03 13:05:21 2011 +0000 1.3 +++ b/src/state.c Fri Mar 04 00:41:52 2011 +0000 1.4 @@ -19,6 +19,7 @@ 1.5 state.idmarw = state.dmaen = state.dmaenb = false; 1.6 state.dma_count = state.dma_address = 0; 1.7 state.pie = 0; 1.8 + state.ee = 0; 1.9 state.leds = 0; 1.10 state.genstat = 0; // FIXME: check this 1.11 state.bsr0 = state.bsr1 = 0; // FIXME: check this
2.1 diff -r d6f699f89303 -r e20f02519835 src/state.h 2.2 --- a/src/state.h Thu Mar 03 13:05:21 2011 +0000 2.3 +++ b/src/state.h Fri Mar 04 00:41:52 2011 +0000 2.4 @@ -59,6 +59,8 @@ 2.5 bool romlmap; 2.6 /// GENCON.PIE -- Parity Error Check Enable 2.7 bool pie; 2.8 + /// GENCON.EE -- Error Enable 2.9 + bool ee; 2.10 2.11 /// DMA Address Register 2.12 uint32_t dma_address;