comparison musashi/m68kcpu.h @ 1843:13abdc98379e mame_interp

Get Android build target working on mame_interp branch
author Michael Pavone <pavone@retrodev.com>
date Thu, 18 Apr 2019 22:06:47 -0700
parents 2e57910fd641
children
comparison
equal deleted inserted replaced
1842:49f65d240299 1843:13abdc98379e
507 507
508 508
509 /* ======================================================================== */ 509 /* ======================================================================== */
510 /* =============================== PROTOTYPES ============================= */ 510 /* =============================== PROTOTYPES ============================= */
511 /* ======================================================================== */ 511 /* ======================================================================== */
512
513 union fp_reg
514 {
515 uint64_t i;
516 double f;
517 };
518 512
519 void m68ki_exception_interrupt(m68000_base_device *m68k, uint32_t int_level); 513 void m68ki_exception_interrupt(m68000_base_device *m68k, uint32_t int_level);
520 514
521 515
522 extern const uint8_t m68ki_shift_8_table[]; 516 extern const uint8_t m68ki_shift_8_table[];