Page 2 of 2

Re: Dex HDD PIO Driver problem

Posted: Sat May 02, 2009 1:54 pm
by Dex
You should not be doing

Code: Select all

   mov   ecx,256
   mov   edi,hdbase
It should be

Code: Select all

  mov   edi,[HddBuffer]
   mov   ecx,256
   mov   edx,hdbase
It needs to be edx.

Re: Dex HDD PIO Driver problem

Posted: Wed May 13, 2009 9:12 am
by djsilence
Sorry, I've made a little misstake (But you too, Dex! :D ).

See, when I write about problems with putting values to that registers I've made a misstake (that code I wrote from my minds). But have you seen the code below? I mean my file HDD.inc (which is copied trully exactly), the content of what is posted in my post (there is exactly that you wrote should be). So it something another problem is in... Baaaaad! :(

Daniel.