Write a directive in assembly language, simple one, only one line | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
- 1

Write a directive in assembly language, simple one, only one line

Write directives to: i. Initialize a value of 0xFF with a label “Constant” in the EEPROM location 0xA5.

15th Feb 2022, 11:13 AM
🏐Volley
🏐Volley - avatar
1 Answer
0
I think it would look something like this: ORG 0xA5 Constant DB 0xFF
15th Feb 2022, 1:59 PM
Brian
Brian - avatar