示例#1
0
文件: CPU.cs 项目: MiLO83/snesbox
 public void port_write(uint2 port, byte data)
 {
     status.port[(uint)port] = data;
 }
示例#2
0
文件: SMP.cs 项目: MiLO83/snesbox
 public void port_write(uint2 port, byte data)
 {
     StaticRAM.apuram[0xf4 + (uint)port] = data;
 }
示例#3
0
文件: CPU.cs 项目: MiLO83/snesbox
 public byte port_read(uint2 port)
 {
     return status.port[(uint)port];
 }
示例#4
0
文件: SMP.cs 项目: MiLO83/snesbox
 public byte port_read(uint2 port)
 {
     return StaticRAM.apuram[0xf4 + (uint)port];
 }