0
votes
x86 Assembly Keyboard Input
For the purposes of explanation, let's suppose you were writing everything in assembly language yourself, boot loader and kernel (*cough* I've done this).
In real mode, you can mak …
0
votes
Unable to run assembly program
I prefer NASM over MASM. There are significant differences between them, especially when it comes to things like variab …
4
votes
Good x86 assembly book
A note - gcc uses AT&T syntax for inline assembly. This is different from Intel syntax which is what …
1
vote
Key concepts to learn in Assembly
I think assembly language can teach you lots of little things, as well as a few big concepts.
I'll list a few things I can think of here, but there is no substitute for going and learning a …
1
vote
variable initialization in assembly for IA-32
2^32 = 4294967296 = 0x100000000 (that's 8 zeroes).
2.0E+32 is 2 * 10^32 = 200000000000000000000000000000000, a completely different number. It's also …
1
vote
MASM under Linux?
Personally I prefer the NASM style, but you can probably run MASM under Wine (or failing that, in a VM). After all it shouldn't need any exotic API calls.
I've been able to run the Win32 NA …
2
votes
Why can’t I change the value of a segment register? (MASM)
You said you were interested in why, so:
In real mode, a segment is a 64K "window" to physical memory and these windows are spaced 16 bytes apart. In protected mode, a segment is a window t …
1
vote
What’s the best way to learn how to build circuits
First, learn some basic electrical theory - resistive networks, measuring voltage and current, Ohm's law, and the basics of diodes and transistors.
Buy a few lamps, resistors, LEDs, transis …
2
votes
unaligned memory accesses
Align the data first, and then take the aligned-SIMD approach.
This is less work than option 3, and with luck your code will be top-speed 25% of the time (i.e. the already-aligned case). Yo …
1
vote
Difference between n = 0 and n = n - n
The assembly-language technique of zeroing a register by subtracting it from itself or XORing it with itself is an interesting one, but it doesn't really translate to C.
Any optimising C co …
0
votes
Intel x86 assembly optimization techniques in a sample problem.
I guess it's that writing to memory (actually, cache memory) is slower than working with registers.
So,
mov [edx+...], bl
shr al, $01;
mov bl, al;
…
1
vote
How do you get how much memory a program uses?
On Linux, try valgrind. It's an amazing tool with too many features for mere mortals to totally comprehend. Have a look at valgrind's …
4
votes
IRQ Numbering Conflict
You're not missing anything.
The 8088 processor (the one used in the original IBM PC) only defined exceptions 0, 1, 2, 3, and 4.
So IBM used 0x8 to 0xF for hardware interrupt handle …
1
vote
A few x86 Assembly language questions…
Interrupt 10h is basically an operating system function call (actually it runs BIOS code). Internally, it reads/writes video memory as well as various registers on the graphics card. To get an idea …
0
votes
MIPS Syscalls and $t registers
Now, can a syscall potentially modify a $t register?
Yes!
Of course, your operating system's syscall interface may preserve all these registers. But the …
