What is an assember?
Translates assembly (abstracted ISA) into machine code
What is assembly?
Writing programs specific for an ISA using mnemonics
What are mnemonics
What is a lexer (and what does it do)
What is the difference between an assembler and a compiler?
Assembler: Converts assembly to machine code
Compiler: Converts higher level program to machine code
What types of convenient notations do assemblers typically allow for
What is the format for Hex 8 assembly
How do Labels work in Hex 8 assembly
How does the hex-8 assembler accomodate for large operands
What does the DATA keyword do in hex-8 assembly?
Why does an assember run 2 passes, and what does it do on each pass?
Note: no need to hold entire program in memory
What is backpatching
Used to assemble in one pass.
Fixes up labels afterwards.
Downsides: need to store entire program in memory (may be a problem for embedded devices)