You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm trying to get an autosplitter script working with lsnes to aid with obtaining the RTA timing for a theory TAS I recently made. Could you help me find the memory offset to where the emulator stores WRAM?
The text was updated successfully, but these errors were encountered:
The absolute address can be read with memory.readbyte(number), where number obeys this table.
eg: memory.readbyte(0x7E1234).
But it's much better and safer to use relative addresses, as in memory.readbyte('WRAM', 0x1234), especially if you wanna separate ROM from memory registers. Reading from BUS is often dangerous and affects emulation.
I'm trying to get an autosplitter script working with lsnes to aid with obtaining the RTA timing for a theory TAS I recently made. Could you help me find the memory offset to where the emulator stores WRAM?
The text was updated successfully, but these errors were encountered: