2012-02-27, 10:54 PM
You can enter hex as 80h or as $80.
But defb ddh doesn't seem to work. Was happy as defb $dd
But defb ddh doesn't seem to work. Was happy as defb $dd
|
DEFB bug
|
|
2012-02-27, 10:54 PM
You can enter hex as 80h or as $80.
But defb ddh doesn't seem to work. Was happy as defb $dd
2012-02-28, 09:52 AM
britlion Wrote:You can enter hex as 80h or as $80.This is not a bug (I think it's already been discussed somewhere over here), but a feature: 'ddh' is an identifier (a word), not a number. To state clear it's a number, prefix it with a leading 0: Code: defb 0ddh |
|
« Next Oldest | Next Newest »
|