]> git.sesse.net Git - pistorm/commitdiff
Break IRQs again
authorbeeanyew <beeanyew@gmail.com>
Thu, 24 Jun 2021 07:52:36 +0000 (09:52 +0200)
committerbeeanyew <beeanyew@gmail.com>
Thu, 24 Jun 2021 07:52:36 +0000 (09:52 +0200)
emulator.c
m68kconf.h

index 8a796670e27b6bb890a116e1f84fda312a3f8d0c..7712be645299f04504c7b7a832a3ee7a59c992cf 100644 (file)
@@ -228,14 +228,14 @@ cpu_loop:
 
   while (irq) {
       last_irq = ((inline_read_status_reg() & 0xe000) >> 13);
-      if (last_irq != last_last_irq) {
+      if (last_irq != 0 && last_irq != last_last_irq) {
         last_last_irq = last_irq;
         M68K_SET_IRQ(last_irq);
       }
       m68k_execute(state, 50);
   }
   if (!irq && last_last_irq != 0) {
-    M68K_SET_IRQ(0);
+    //M68K_SET_IRQ(0);
     last_last_irq = 0;
   }
 
@@ -670,6 +670,8 @@ void cdtv_dmac_reg_idx_write(uint8_t value);
 uint32_t cdtv_dmac_read(uint32_t address, uint8_t type);
 void cdtv_dmac_write(uint32_t address, uint32_t value, uint8_t type);
 
+unsigned int garbage = 0;
+
 static inline void inline_write_16(unsigned int address, unsigned int data) {
   *(gpio + 0) = GPFSEL0_OUTPUT;
   *(gpio + 1) = GPFSEL1_OUTPUT;
@@ -695,6 +697,7 @@ static inline void inline_write_16(unsigned int address, unsigned int data) {
   *(gpio + 2) = GPFSEL2_INPUT;
 
   while (*(gpio + 13) & (1 << PIN_TXN_IN_PROGRESS)) {}
+  NOP NOP NOP NOP NOP NOP NOP NOP NOP NOP NOP NOP
 }
 
 static inline void inline_write_8(unsigned int address, unsigned int data) {
@@ -727,6 +730,7 @@ static inline void inline_write_8(unsigned int address, unsigned int data) {
   *(gpio + 2) = GPFSEL2_INPUT;
 
   while (*(gpio + 13) & (1 << PIN_TXN_IN_PROGRESS)) {}
+  NOP NOP NOP NOP NOP NOP NOP NOP NOP NOP NOP NOP
 }
 
 static inline void inline_write_32(unsigned int address, unsigned int value) {
@@ -818,6 +822,22 @@ static inline uint32_t ps_read(uint8_t type, uint32_t addr) {
   return 0;
 }
 
+static inline void ps_write(uint8_t type, uint32_t addr, uint32_t val) {
+  switch (type) {
+    case OP_TYPE_BYTE:
+      inline_write_8(addr, val);
+      return;
+    case OP_TYPE_WORD:
+      inline_write_16(addr, val);
+      return;
+    case OP_TYPE_LONGWORD:
+      inline_write_32(addr, val);
+      return;
+  }
+  // This shouldn't actually happen.
+  return;
+}
+
 static inline int32_t platform_read_check(uint8_t type, uint32_t addr, uint32_t *res) {
   switch (cfg->platform->id) {
     case PLATFORM_AMIGA:
index 3dfbff80e5651b3760f47c8f9768880d4febb9f7..211171036e6a3e652918f221c7421cb1f6123c05 100644 (file)
@@ -89,8 +89,8 @@
  * If off, all interrupts will be autovectored and all interrupt requests will
  * auto-clear when the interrupt is serviced.
  */
-#define M68K_EMULATE_INT_ACK        OPT_SPECIFY_HANDLER
-#define M68K_INT_ACK_CALLBACK(...)    0xFFFFFFFF
+#define M68K_EMULATE_INT_ACK        OPT_OFF
+#define M68K_INT_ACK_CALLBACK(...)  0xFFFFFFFF
 
 
 /* If ON, CPU will call the breakpoint acknowledge callback when it encounters