The syntax for the assembly program material itself will be almost universally the same. What will have small differences will be the assembler directives including how to build macros.
Your NMOS 6502 code, modified slightly for C32, is as follows. (By the way, use the [co de] and [/co de] directives, minus the space in the middle so they'll do their jobs, to get monospacing and preserve the spaces in your code listings in the forum post views.)
Code:
CPU 6502.TBL
VAR EQU #$FF
ORG $C000
Reset
LDA #$01
STA VAR
.Loop
jmp .Loop
NMI:
pha
txa
pha
tya
pha
pla
tay
pla
tax
pla
rti
IRQ:
rti
ORG $FFFA
DWL NMI
DWL Reset
DWL IRQ
Note that you could put your IRQ label on the last line of the NMI section to save a byte, you could put the code a little more to the right so it starts on the same lines with the labels to make it more compact to look at (I spaced it the way you initially wrote it even though the way your post was displayed gobbled up your spaces since you didn't have the code directives), and the CMOS 6502 (65c02) can directly push and pull X and Y without going through A and that the ISR won't always use X and Y so there's often no need to push and pull them anyway, and the JMP can be replaced with BRA (BRanch Always) to save a byte.