Tagged Questions

0
votes
1answer
70 views

x86 Assembly Keyboard Input Without INT

I need to make an animation which will accelerate when the user keeps a key pressed, and return to normal speed when the key is released. I can't "wait" for the user to enter a key like most DOS and …
0
votes
1answer
51 views

Problem with output, doesn’t read jump…

.section .data msgI: .ascii "x = y\n" msgI_end: msgM: .ascii "x > y\n" msgM_end: msgL: .ascii "x < y\n" msgL_end: .section .text .globl main main: movl $5, %eax #x = 5 …