Post subject: LUA dump to file
Joined: 11/23/2009
Posts: 2
Hi, After some hours trying to use lua I have to ask, how can I save vram (or a part of it) to a file in binary? Thanks
Joined: 12/31/2009
Posts: 174
  1. Locate the section of vram you want.
  2. Open a file handle to write the data to.
  3. Read a byte from vram.
  4. Write the byte to the file.
  5. Go back to step 3 until finished.
  6. Close file handle.
I don't know the API for Bizhawk so I can't make you a script to do it.