I have read that Assembly language is processor dependent, and there were special set of instructions for every processor. I use intel i5 x86_64 architecture processor. When I write code I haven't used any different set of instructions. I use NASM assembler. It assembles my code and converts to binary. So Whats the matter with Processor there. Even my friend with different architecture runs the same code (not compiled but source code) and gets the same Output... So where is Assembly language processor dependent ??
And the code is ... Its just an example, every piece of code runs on both architectures x86_64 and 8088 microprocessor
[ORG 0x7c00]
xor ax, ax ;make it zero
mov ds, ax
mov si, msg
call bios_print
hang:
jmp hang
msg db 'Welcome to Macintosh', 13, 10, 0
bios_print:
lodsb
or al, al ;zero=end of str
jz done ;get out
mov ah, 0x0E
int 0x10
jmp bios_print
done:
ret
times 510-($-$$) db 0
db 0x55
db 0xAA
Go to the car dealer and take a brand new toyota for a test drive. Then go to other used car lots and find older toyotas of the same model, but different year. They are not identical every year, but they are often quite similar to other models for years at a time, placement and look and feel if some items, door locks, window controls, etc. Then go to a ford dealer and repeat with some model of ford. Instantly the ford is dramatically different than the toyota even though they are both cars with four wheels and an engine that do the same job. Among fords they are often similar to their siblings and prior and post year models for specific details, sharing parts for years in a row.
No different here, x86 processors have items in them that you can see a resemblance all the way back to the first 8088/86. but compare that to a power pc or an arm or a mips and you will see that although they are all processors that can run modern operating systems, their individual details and look and feel are much more different across brands than within brands.