Tagged Questions
4
votes
4answers
763 views
PIC 16F684 Microcontroller Interupt Handling
I just finished up my Microprocessors class in college just a few weeks ago, there we programmed in assembly only. We learned a fair amount (IMHO) about interrupts.
Here is my question: I am ...
2
votes
1answer
50 views
Inline assembly. Rewrite assembly code.
How to write this assembly code as inline assembly? Compiler: gcc(i586-elf-gcc). The GAS syntax confuses me. Please give tell me how to write this as inline assembly that works for gcc.
...
2
votes
2answers
1k views
How to call DOS Interrupts within a C/C++ program using Inline Assembly?
everyone !
I need to call some DOS interrupts (Services) from a C/C++ program, I tried the following inline asm code:
(Read a character)
int main()
{
asm(
"movb $0x01, %ah;"
"int $0x21"
);
...
1
vote
1answer
184 views
Assembly. Stop system time
I have a task for my Assembly course to stop system time while pressing Alt-button. I do it by disabling the 8th interrupt. As I understand system time is saved in the 40:6ch cell of memory, so by ...
1
vote
3answers
367 views
Assembly video mode coordinates mapping to character coordinates
I am working on an 8086 dos assembly project , using video mode i was able to draw some lines and stuff but now i want to print some characters and found that (interrupt 10,2) uses character (row,col) ...
1
vote
2answers
1k views
8086 assembly right mouse click interrupts
I am working on a project in 8086 assembly on windows machine and I need to know which mouse button has been clicked. What are the interrupts for this? or how do I go about finding this out?
Thanks ...
1
vote
1answer
518 views
Extended Interrupt 13, Reading an unformatted Disk
It's been a while since I did any ASM, and decided to once again try and write a small bootloader, testing with qemu. My issue is with interupt 13, for some reason the carry flag is being set, so the ...
0
votes
1answer
69 views
work with BIOS interrupts that execute by bootloader
I want to work with directory and subfolder
and I want to do it by bootloader
but most of existing interrupts are available in dos mode
How can I find BIOS interrupts?
0
votes
1answer
55 views
How can I clear the screen without having to fill it
Does an interrupt service routine exist to help me clear the screen of the terminal? Will it work on windows?
0
votes
0answers
143 views
Why it doesn't print correctly?
So I have this code using C and inline ASM, which is supposed to replace the original Timer Interrupt and use my own. After that it should manage 4 "proccess" which are just procedures that print ...
0
votes
2answers
435 views
x86 interrupt based assembly variable access problem
I have a (seemingly) simple question to read in a string and print it out again using x86 interrupt based assembly. The problem i'm having is accessing the string that has been read in properly. The ...
0
votes
1answer
579 views
Assembly Programming and Interrupt Handling
I'm writing a program in assembly using MIPS architecture for a class, and I'm having trouble figuring out how to grab an input character by a user and store it in a register to process.
The program ...