I\'m trying to develop a simple kernel using TASM, using this code:
; beroset.asm
;
; This is a primitive operating system.
;
;**********************************
I would say that you need to end the Start:
section by adding end Start
at the last line like this:
code ends
end Start
But again in that code you never initialize stack... It will not work, but it sould print "Operating system found and loaded.".
UPDATE:
Actually, this did the trick. I just added end Start
in place of END and the "No entry point" error was gone. but you get the stack warning.
So there you go. =)
CONCERNING THE STACK: Just add this before everything:
.model small
.stack