2024-12-27 17:52
uh, sort of? assembly is just the human readable form of the processor's machine language. an assembler does the parsing and translation. however, most modern assemblers add preprocessing, macros, and what might be considered "abstraction," by allowing stuff like variables to reference memory addresses.
higher level languages are eventually translated to machine language to run, so definitely abstraction there.