QUOTE
You won't be able to directly access the bus controller if that is what you are asking.
Yes I want access directly to the hard disk...
I have tryed to do a code in ASM:
CODE
.MODEL SMALL
.STACK
.DATA
.CODE
INIZIO:
MOV AX,@DATA
MOV DS,AX
MOV AX,0
MOV DL,0
PUSH BP ;save BP on the stack
MOV BX,SP
MOV AL,2 ;set HD
MOV CX,1 ;1 sector to read
MOV DX,0 ;address 0
INT 25H
JNC SOTTO
JMP FINE
SOTTO:
MOV AL,[BX]
CALL OUTPUT;OUTPUT is a procedure for printing to video a char
FINE: NOP
MOV AX,4C00H
INT 21H
END INIZIO
the code should be right but while I run it, Win Xp says me that I can't access directly on the HD as you said to me.
Well but at this point although I call the API cuold be possible access directly or not?
If as says gabehabe I make a directory, can I manage it how I prefer?
for example create a my "file system" and a program that manages it...
last demand and for today I have finished
Linux can perform this job more easily?
I apologise again for my poor English.
thanks much for your help