+ 2
I wanna a best Assembly language which is the best one for making an operating system???
I too wanna know the other purposes of Assembly Languages...
4 odpowiedzi
+ 5
Um you can make driver with it
Other purpose....-_-
Ahhh You mean best reference?
best assembler?
+ 3
It will be take years however to make an operating system in assembly language, for example the following is Intel x86 (8086) instructions for outputting a single character to the screen:
MOV AH,08
INT 21
MOV DL,AL
MOV AH,02
INT 21
MOV AH,4C
INT 21
+ 1
You do not write an operating system with Assembly. Assembly languages are low level programming languages, they are the closest to a CPU's Instruction Set. All programs in whatever language they are written will be converted to this machine code in order to be run.
Operating Systems are for the most part written in C/C++
+ 1
this bro