I want to create a keil project with pure assembly and run the code . I create a project, I add a app1.a asm file to the project and insert a line mov a,33h but when I step with F11 I can't see register a=33h What is wrong ?
"What is wrong ?"
It's quite likely that RAM location 33h was not holding the value 33h when the mov was executed.
thanks a lot I replace mov A,#33H