rtoumazet / saturnin

Saturnin is a Sega Saturn emulator
Apache License 2.0
2 stars 0 forks source link

Handle memory access size restrictions depending on transfer source #257

Open rtoumazet opened 1 year ago

rtoumazet commented 1 year ago

For instance VDP2 registers can't be directly written as bytes, but DMA transfer can. Needs further investigations to know where to apply this reasoning and how to implement it.

rtoumazet commented 1 year ago

Needs to use direct memory copy when transferring through the DMA, instead of using the regular memory handlers. This way writes won't be traced.