0
votes
0answers
82 views

How to get Alt-[ key press by BIOS int 16h?

I use this code to read key scan codes: mov ah, 00h int 16h // actual key scanning mov _asciiCode, al mov _scanCode, ah And I use this code to read modifier keys state: mov ah, 02h int 16h // ...
0
votes
1answer
28 views

Using Int13h with FreeDos Debug

I'm working on some assembly, and as part of a school project I am using Int 13h 08 to Read current disk parameters, but I'm messing something up. I'm using FreeDOS in a VirtualBox, and using Debug. ...
0
votes
1answer
92 views

Using Int 13H to Read disk parameters

My goal is to, simply put, use Int 13h to read my disk parameters. I understand this can not be directly accomplished in Windows, as it essentially intercepts the BIOS call. My thinking, thus far, ...
5
votes
2answers
1k views

I don't understand how to use Interrupt 21, AH=0ah

My information is coming from here. The assignment asks for a program that reads in no more than 20 characters, converts those characters to upper case, and then prints the input as capitals. I have ...
1
vote
1answer
93 views

Low-memory addresses 0x4c and 0x4e

Im trying to reverse mbr rootkit and faced a problem with low-memory addresses 0x4c and 0x4e. I have no idea about their destination. [0x000000000009f51c] 9f40:011c (unk. ctxt): xor ax, ax ...
2
votes
1answer
377 views

FASM Procedure Issue

I'm new to whole assembly FASM I have implement WriteString via this tutorial INT 10h / AH = 13h - write string. input: AL = write mode: bit 0: update cursor after writing; ...
0
votes
1answer
172 views

Finding out which drive was booted in x86 bootloader

I'm writing a game bootloader for x86. At one point, early in the booting, I need to load some sectors from my boot drive into memory. I do this with interrupt 0x13 (ah=02), and when I try it in my ...
1
vote
1answer
734 views

Example for Int 13/AH=03h interupt assembly

Could someone give me an example of how to use the interrupt Int 13/AH=03h to fill a certain sector with zeroes? I tried googling for it and all I found was a Wikipedia entry with not much information ...
0
votes
2answers
280 views

Weird print string output from INT 0x10

Hi i have redirected divide overflow interrupt to point at my custom created interrupt which prints 'hello man here i am' on the screen, instead it print weird ascii characters. Can someone tell me ...
2
votes
2answers
184 views

why keyboard driver required as keyboard input can be took either from interrupts or by accessing keyboard buffer?

As keyboard input as scan codes can be obtained from calling interrupt 09 IRQ1 or similar ones or by directly accessing the BIOS keyboard buffer at segment 0040h why is there a requirement for a ...
1
vote
2answers
1k views

How do I access the USB port through the BIOS in 16-bit x86 real mode?

I'm a newbie to the Assembly world, I'm trying to write some assembly codes to communicate with Hardware devices like Serial, Parallel, VGA, Keyboard,..etc. I'm doing this while being in Real Mode ...
0
votes
1answer
184 views

How to detect text mode or graphics mode on boot loader?

I want to detect which mode I just using now with BIOS intXX when running bootloader I wrote. How to detect now is text mode or graphics mode? Which interrupt function I should use? Thank you~ I ...
2
votes
1answer
451 views

bios int 0x13 fails without error

I'm writing a bootloader for educational use and it goes quit well. But when I tried to boot on a real machine my disk read code fails to load some sectors. No error code is given nor is the CF set. ...
0
votes
2answers
520 views

How to trigger a BIOS interrupt (e.g. printing a character in TTY mode) on PowerPC/POWER architecture using asm?

the title says it. I want to print a character to the screen on a machine with PowerPC/POWER architecture or basically just call some BIOS function. As I understand it usually matters which and how ...
2
votes
1answer
459 views

Displaying data using BIOS in C

Is there any way to print data using bios in c. I know in assembly you can use int 0x10, but is there any equivalent for C?
3
votes
2answers
1k views

Interrupt №13 (ah=48) - not working

I want fetch the parameters of my hard disk. Using the technique described here. This is code showing normal parameters of floppy disk: mov dl,00h mov ah,08h int 13h This is code, showing not ...
4
votes
4answers
410 views

Stack size required for bios interrupt call

I am working on a small bootloader for learning purposes. Is there any specification/information available about the (free) stack size required for a bios interrupt call?
1
vote
4answers
345 views

IRQ Numbering Conflict

From: http://software.intel.com/en-us/articles/introduction-to-pc-architecture/ Exception number 10h corresponds to a "Floating Point Error" but software interrupt 10h also corresponds to "Video ...