Earlier quoted context omitted.
> As a senior Java / CPP developer This makes me cringe. A "senior" engineer is defined by whatever role a company slots you in. This is compounded by adding programming languages to the mix. > I really wish I had done more embedded and assembly at school. I can't understand it or appreciate it. There is no hardware involved here, per-se. What is there is the 6502 instruction set, plus binary floating point calculati…
On Linux, a full asm program with syscalls isn't too bad. Here's one example: https://jameshfisher.com/2018/03/10/linux-assembly-hello-wor...
mov ah, 9
mov dx, 108
int 21
ret
db "Hello world!" 0D 0A "$"