python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
BIOS Int 13h 08 DBT issue Bytes per sector code returns 0xF0 instead of 0x00 - 0x04
I was using int 13h 08 to load disk parameters and got an invalid value from the disk base table (dbt).
The value in question was 0xF0.
note: dbt is returned in es:di
Reference to int 13h 08: https://...

TheNullPlayer
Votes: 0
Answers: 1
How do i input a more than 1 digit number?
I want to check if they are equal, unequal, greater or lesser
Dosseg
.model small
.stack 100h
.data
MsgEq db 'Numbers are Equal $'
MsgUneq db 'Numbers are Unequal and $'
MsgGr db ' First Number is gre...
Atena
Votes: 0
Answers: 1
can i push and call a proc inside a proc?
I want to call a proc in another proc . the proc from the inside must be pushed before, the inside proc has ret 4. when i run it my computer stops working is there a way to do this? maybe add another ...
user17341742
Votes: 0
Answers: 1
Dynamically reading an array values in x86 Dos assembly
I tried to read an array in an repetitive structure but it gives me an error , is there an alternative for the code bellow ?
.data
aux db 0
array db 0,1,2,3,4,5,6,7,8,9
.code
main:
print_...
Leonard Sandu
Votes: 0
Answers: 1