Norman Yen

Results 7 comments of Norman Yen

With the CUSTOM 65816 CPU it now adds `.p4510 ; 65816 processor` (for Mega65?) to define the CPU but it should be `.p816`. Also noticed this odd piece of code:...

Can I get the LONG variable type enabled for the 65816? Here's the output from a procedure: ``` C256RND: phb phk plb ; LineNumber: 47 ; ****** Inline assembler section...

When using an LPOINTER with indirect addressing, square brackets [] should be used rather than round brackets (). I was trying to find a way to write to the screen...

Sorry to hear about your health situation. You don't need to change the TRSE syntax. Change the generated source code so that if the variable is defined as an LPOINTER...

Thanks for the quick updates. I spread my zero page pointers out by multiples of 3 already after I noticed it in the sources. Can I get "@endassembler" which complements...

Math for lpointers is only done in 16-bits. Here's an example. ``` var lptemp: lpointer; const GRPH_LUT0_PTR: integer=$2000; ... lptemp:=#VKY+GRPH_LUT0_PTR; ``` Results in this code: ``` ; INTEGER optimization: a=b+c...

Found another problem with lpointer. ``` procedure testppp(ppp: lpointer); begin end; var zz: lpointer; begin testppp(zz); ``` Here's the code from it. ``` sep #$10 ; disable X/Y 16-bit lda...