New CX16 support for Ozmoo 14

Chat about anything CX16 related that doesn't fit elsewhere
fredrik
Posts: 26
Joined: Fri Mar 01, 2024 12:25 pm

Re: New CX16 support for Ozmoo 14

Post by fredrik »

RAM contents are generally preserved through a reset, and Ozmoo checks when it starts, if the game file has already been read into RAM. However, when resetting the computer, Basic writes a special value at the end of Basic RAM, so one or two bytes are changed. This turned out to have unwanted, albeit sometimes hilarious effects in some games.
cosmicr
Posts: 50
Joined: Tue Nov 14, 2023 4:29 am

Re: New CX16 support for Ozmoo 14

Post by cosmicr »

fredrik wrote: Sat Jul 06, 2024 4:21 pm Ozmoo copies the entire state of the virtual machine to Video RAM every turn,
This is an interesting approach, wondering why not banked ram? Faster to use VRAM because of the auto increment?
fredrik
Posts: 26
Joined: Fri Mar 01, 2024 12:25 pm

Re: New CX16 support for Ozmoo 14

Post by fredrik »

cosmicr wrote: Sat Feb 22, 2025 11:14 pm
fredrik wrote: Sat Jul 06, 2024 4:21 pm Ozmoo copies the entire state of the virtual machine to Video RAM every turn,
This is an interesting approach, wondering why not banked ram? Faster to use VRAM because of the auto increment?
Two reasons:

1: For a maximum size Z-code game, we're already using all of banked RAM.

2: Writing a block of up to 64 KB to VRAM is both simple and fast. Auto-increment, and no bank calculations needed. Since this data has to be written every turn, it's important that it's as fast as possible. Part of the data we read may still be in banked memory though, but at least we don't need to switch the bank back and forth for every byte copied.
Post Reply