How you doin fellows
today i want to share with you some techniques about OS libraries
first i completely finished the my KERNEL LIBRARY its contain
- FAT 12,16,32 driver
open,close,read,write,seek,mkdir,mkfile,rmdir,rm,dir,cp,mv
new FLAT-mode memory manager
new device driver: ps/2 keyboard and mouse
SVGA 24bit color-depth
dynamic multi-tasking scheduler
so KERNEL ready, now i'm trying to write some application for my kernel but the question is
1. what is the best memory model for user application small,large,...,please notice the kernel it self is in small memory model
2. and how user application use system call , is by interrupt call like this(asm int 0x44 ;print text)
or via kernel library it self(the static 200K)
any advice
CheerS,
a.T.d