Page 1 of 1

How to use the video registers in Assembly?

Posted: Fri Dec 08, 2023 6:37 pm
by KaiLikesToCode
In X16 Basic, you can use VPoke to poke to the VERA registers, like this:

Code: Select all

VPOKE 1,1
VPOKE 2,2
But in 6502 assembly, you use LDX and STA. How do we poke to the VERA in assembly?

Re: How to use the video registers in Assembly?

Posted: Fri Dec 08, 2023 10:39 pm
by Ser Olmy
VPOKE means "store in VERA video RAM." This can not be accomplished by a simple STA/STX instruction, as VRAM isn't mapped into the 65C02's address space.

Instead, VRAM is accessed indirectly using the memory-mapped registers at $9F20-$9F25. (Which is exactly what the VPOKE command does behind the scenes, it just hides all the complexity.)

The exact procedure looks something like this:
  1. Decide whether you are using data port 0 or data port 1, and set the ADDRSEL bit (bit 0) of $9F25 accordingly
  2. Write bits 0-7 of the VRAM address to $9F20
  3. Write bits 8-15 of the VRAM address to $9F21
  4. Write the MSB of the VRAM address to bit 0 of $9F22 [Edit: Original post said $9F21] (optionally: set the increment/decrement bits)
  5. Write the desired value to $9F23 (data port 0) or $9F24 (data port 1), depending on your choice in step 1
By the way, you say "poke to the VERA registers," but the addresses you VPOKE in the example (1 and 2) are not the locations of any VERA registers.

Re: How to use the video registers in Assembly?

Posted: Fri Dec 08, 2023 11:11 pm
by mgkaiser
Create a "VPOKE" macro to hide the nasty details of writing to video memory.

Maybe also:
"VPOKEW" to poke 2 bytes in a row.

"VSTEP" to set the step by which to advance the address
"VPOKE-NEXT" and "VPOKEW-NEXT" to store values in the next address according to the step without doing addresses again.

"PEEK" macros to go with your pokes and maybe parameters to decide if you're using DATA0 or DATA1.

Macros are your friend. If you do it right you write really readable code that is still good, fast assembly.

Re: How to use the video registers in Assembly?

Posted: Sat Dec 09, 2023 1:28 am
by KaiLikesToCode
I'm gonna make a macro for poking to the video memory, (named pvr). Can you please give me an example of poking to the vram? NOTE: I'm using DASM

Re: How to use the video registers in Assembly?

Posted: Sat Dec 09, 2023 1:34 am
by SolarSurfer
I highly recommend watching Matt Heffernan's video series on 6502 assembly.
https://www.youtube.com/watch?v=gqwIzbT ... SL1tkSTRI_

Specifically, Lesson 9 in the playllist. Keep in mind the vidoes are very old and based on early versions of the emulator. I think he's "poking" (the ASM equivalent) screen codes into $00000 of VRAM instead of what it is now, $1B000.

Lesson 12 shows how to use tiles
Lesson 15 shows how to use bitmaps
Lesson 18 shows how to use sprites

Another really good youtube channel is https://www.youtube.com/watch?v=v1_ivVa ... qC0IYEjCv6 which are also based on somewhat old versions of the emulator, but still are invaluable.

Re: How to use the video registers in Assembly?

Posted: Mon Dec 11, 2023 7:51 pm
by mortarm
Ser Olmy wrote: Fri Dec 08, 2023 10:39 pm 3. Write bits 8-15 of the VRAM address to $9F21
4. Write the MSB of the VRAM address to bit 0 of $9F21 (optionally: set the increment/decrement bits)
This part confused me because your referencing the same address. What am I missing?

Re: How to use the video registers in Assembly?

Posted: Mon Dec 11, 2023 11:18 pm
by DragWx
mortarm wrote: Mon Dec 11, 2023 7:51 pm
Ser Olmy wrote: Fri Dec 08, 2023 10:39 pm 3. Write bits 8-15 of the VRAM address to $9F21
4. Write the MSB of the VRAM address to bit 0 of $9F21 (optionally: set the increment/decrement bits)
This part confused me because your referencing the same address. What am I missing?
Oops, looks like a typo. On point 4, the address should be $9F22.

For reference, all of the VERA's registers are explained here in the documentation. This is just a technical reference though, so it won't contain tutorials on anything.

Re: How to use the video registers in Assembly?

Posted: Tue Dec 12, 2023 9:25 pm
by Ser Olmy
mortarm wrote: Mon Dec 11, 2023 7:51 pm
Ser Olmy wrote: Fri Dec 08, 2023 10:39 pm 3. Write bits 8-15 of the VRAM address to $9F21
4. Write the MSB of the VRAM address to bit 0 of $9F21 (optionally: set the increment/decrement bits)
This part confused me because your referencing the same address. What am I missing?
Nothing, because as DragWx pointed out, it's a typo. The correct address for step 4 is $9F22. Sorry about that.