hyper Px += 4 # add 4 to each column in data base
How does this look in pasm? Is it supposed to be:
hyper add P0, 4
or is it:
hyperadd P0, 4
If it's the former, it seems really odd to have an op which modifies the meaning of the next op. It seems confusing, for an assembly syntax.
Or is the op going to be "hyper", with "add" passed to it as a parameter?:
hyper P0, 4, .add # or something
Just a bit confused about the syntax....
JEff