Comment on A web server in x86 assembly languageparentComments−sometwo15yWhy did you use port I/O instead of int 13h?−daeken15yUsing int 13h is fine for floppies, but when you're using it with hard drives it gets messy -- you have to use the extended versions which are buggy as hell. Much easier to just do it directly, and it doesn't take up much more space (if at all).
Comments
Why did you use port I/O instead of int 13h?
Using int 13h is fine for floppies, but when you're using it with hard drives it gets messy -- you have to use the extended versions which are buggy as hell. Much easier to just do it directly, and it doesn't take up much more space (if at all).