I'm working on a simple CALCnet axiom (I'm not really an ASM programmer, but all CALCnet needs is four subroutines and a few memory pointers). Because CALCnet relies so much on pointers, how do you define a constant in Axe, like how L1-L6 function?
Can I just define the constant as a replacement routine,
$8800
or do I need to define all of the things you can do with the constant (load, add, subtract, multiply, divide...)?
ld hl, $8800
...
add hl, $8800
...
sub hl, $8800
...