Hi,
take a look at this
Search found 7 matches
- Wed Sep 17, 2008 6:23 am
- Forum: Beginning OS Development
- Topic: Tutorial Bootloader 1 error
- Replies: 1
- Views: 18465
- Sat Sep 06, 2008 2:17 am
- Forum: Beginning OS Development
- Topic: How to build an os?
- Replies: 8
- Views: 40018
I advice you to read the tutorial,which Hero Doug gave you its link...if you don't understand somthing you could ask about it,and I'm sure alot of people here will be happy to answer your questions. If you have some problems in English,you should go and take an English course,because os development ...
- Thu Sep 04, 2008 2:18 am
- Forum: Beginning OS Development
- Topic: How to build an os?
- Replies: 8
- Views: 40018
- Thu Sep 04, 2008 2:07 am
- Forum: Beginning OS Development
- Topic: How to build an os?
- Replies: 8
- Views: 40018
- Thu Sep 04, 2008 2:04 am
- Forum: Beginning OS Development
- Topic: FAT12
- Replies: 4
- Views: 26978
Thanx Andrew,problem has been solved :D ,this the working code for anybody else... setcluster: push cx mov cx, ax ;copy current cluster mov dx, ax ;copy current cluster shr dx, 0x0001 ;divide by two add cx, dx ;cx=offset into FAT mov bx,[es:0x500] ;address of fat table add bx, cx ;index into FAT pus...
- Sun Aug 31, 2008 12:54 am
- Forum: Beginning OS Development
- Topic: FAT12
- Replies: 4
- Views: 26978
- Sat Aug 30, 2008 7:43 am
- Forum: Beginning OS Development
- Topic: FAT12
- Replies: 4
- Views: 26978
FAT12
Hi, I'm trying to write a real mode os with asm, now I'm writing a fat12 driver,till now I could show list of files and directories,and read a text file,but now I'm trying to write a function that sets an entry in the FAT table to a new value,for example when you write a new file you have to set an ...