I read all of the documents and I can't find a way of refering to the upper and lower bytes of a word variable. For example
dim total as word
total.hb = 0x20 total.lb = 0x30
From the assembly listing is see the following should work.
total_l = 0x20 total_h = 0x30
Log in to post a comment.
I read all of the documents and I can't find a way of refering to the upper and lower bytes of a word variable. For example
dim total as word
total.hb = 0x20
total.lb = 0x30
From the assembly listing is see the following should work.
total_l = 0x20
total_h = 0x30