?? mipsio.c
字號:
#include "types.h"#include "emul.h"#include "skyeye_config.h"extern MIPS_State *mstate;UInt32mips_io_read_byte(UInt32 addr){ if (skyeye_config.mach->mach_io_read_byte) return skyeye_config.mach->mach_io_read_byte(mstate, addr); else return 0;}UInt32mips_io_read_halfword(UInt32 addr){ if (skyeye_config.mach->mach_io_read_halfword) return skyeye_config.mach->mach_io_read_halfword(mstate, addr); else return 0;}UInt32mips_io_read_word(UInt32 addr){ if (skyeye_config.mach->mach_io_read_word) return skyeye_config.mach->mach_io_read_word(mstate, addr); else return 0;}UInt64mips_io_read_doubleword(UInt32 addr){ return 0;}voidmips_io_write_byte(UInt32 addr, UInt32 data){ if (skyeye_config.mach->mach_io_write_byte) skyeye_config.mach->mach_io_write_byte(mstate, addr, data);}voidmips_io_write_halfword(UInt32 addr, UInt32 data){ if (skyeye_config.mach->mach_io_write_halfword) skyeye_config.mach->mach_io_write_halfword(mstate, addr, data);}voidmips_io_write_word(UInt32 addr, UInt32 data){ if (skyeye_config.mach->mach_io_write_word) skyeye_config.mach->mach_io_write_word(mstate, addr, data);}voidmips_io_write_doubleword(UInt32 addr, UInt32 data){}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -