// license:BSD-3-Clause // copyright-holders:R. Belmont #ifndef MAME_CPU_SH_SH3COMN_H #define MAME_CPU_SH_SH3COMN_H #pragma once // actual port handling is more complex than this // which should be considered a temporary solution // just used some arbitrary port numbers #define SH3_PORT_A (0x10*8) #define SH3_PORT_B (0x11*8) #define SH3_PORT_C (0x12*8) #define SH3_PORT_D (0x13*8) #define SH3_PORT_E (0x14*8) #define SH3_PORT_F (0x15*8) #define SH3_PORT_G (0x16*8) #define SH3_PORT_H (0x17*8) /* no I */ #define SH3_PORT_J (0x18*8) #define SH3_PORT_K (0x19*8) #define SH3_PORT_L (0x1a*8) #endif // MAME_CPU_SH_SH3COMN_H