1

I'm writing a simple assembly program. And has written upto this.

Now the code looks fine. But it gives me this error

enter image description here

ps: I think something of my installation is gone wrong. Please help

Jester
  • 56,577
  • 4
  • 81
  • 125

1 Answers1

2

Try adding "0" before "AABBH" and "CCDDH".

When a hexadecimal number starts with a letter, it might be confused with a word. For example, you may have a variable named "AABBH", which is a valid name. To avoid this confussion, just add 0 before hexadecimal numbers when they start with a letter.