Forum: Assembly Dec 20th, 2008 |
| Replies: 2 Views: 1,539 You will need to tweak 'termios' to get non-buffered input to work. Read this thread for code and discussion of the issue:
... |
Forum: Assembly Oct 14th, 2008 |
| Replies: 1 Views: 2,105 Some Assemblers that have 64-bit support:
FASM
http://flatassembler.net/
NASM
http://www.nasm.us/
YASM
http://www.tortall.net/projects/yasm/ |
Forum: Assembly Oct 15th, 2007 |
| Replies: 2 Views: 874 Here is some reading material:
http://del.icio.us/Evenbit/OS
Nathan. |
Forum: Assembly Oct 15th, 2007 |
| Replies: 2 Views: 874 You have several "int 0x21" calls in your code. These are DOS calls:
http://www.ctyme.com/intr/int-21.htm
Since DOS is not loaded (indeed, you are writing your own OS), then you cannot use... |
Forum: Assembly Apr 28th, 2005 |
| Replies: 3 Views: 3,462 Well, after the MAIN: label you can do something like...say, read a sector:
mov DH, 0 ; set the head
mov CH, 0 ; set the track
mov CL, 1 ; set the sector
lea BX, buffer ;must define 'buffer'... |