python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Finding the minimum value on a list Assembly Language GAS
I'm trying to find the minimum value of a list using assembly language. I'm trying to use -1 to compare all the other values to. my current code is
data_items:
.byte 3,67,34,222,45,75,54,34,44,33,22,1...
Tristan
Votes: 0
Answers: 1
Strange BIOS int 10h ah=0eh teletype output on Sony Vaio
I am having something bizarre on a Sony Vaio when playing with a boot sector. I am compiling some code with nasm, copying it to a usb stick and booting that on the Vaio.
I am running this code:
[ORG 7...
freewill
Votes: 0
Answers: 0
x86 address space calculation PAE to 36 bits
I'm having some hard time understanding PAE. I know it creates a 3rd level of indirection via the PDPT, so that the address translation goes from CR3 -> PDPT(4 entries) -> PD(512 entries) -> ...
user16469617
Votes: 0
Answers: 1
I am not able to store an element of an array into a register using x86 assembly
The following is my code in assembly:
mov esi, MemberLvl
mov edi, OfficerLst
mov al, [esi]
mov test1, al
mov ah, [edi]
mov test2, ah
In the C++ main program, I have declared ...
Jen
Votes: 0
Answers: 1