예제 #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];
 }