Question about which tools to use, bugs, the best way to implement a function, etc should go here. Don't forget to see if your question is answered in the wiki first! When in doubt post here.
Please! I´m writing my on int 21h functions almos like MS-DOS, but I´m not understanding what and why is used "HANDLE" on some functions of MS-DOS Example:
Close File with Handle
mov bx, Handle <- what kind value it´s this! what is this ? ? ?
mov ah, 3Eh
int 21h
"The handle is the offset into a process's JHT (Job Handle Table).
The JHT is the file handle structure located in the PSP of every Dos program and is by default limited to 20 entries."
The above quote is from this book "Dissecting DOS" by M Podanoffsky.
And is a good book for writing a Dos clone OS.