python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
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
Write data from a pointer to a local variable(another pointer) in assembler
replace PROC
enter 8, 0
min_i equ [bp - 2]
min equ [bp - 4]
max_i equ [bp - 6]
max equ [bp - 8]
mov bx,offset ptr_arr
mov [min_i],[bx]
mov [max_i],[bx]
...
...
LoaDeadd
Votes: 0
Answers: 1
computing surface area of a polygon - printing wrong output
I am new to Assmbly language and I'm practicing for future use. I've tried a lot of ways, read a lot of articles and a lot of examples but I just can't compute the surface area properly also the outpu...

user18250824
Votes: 0
Answers: 1
Remove first occurring space from string in assembly 8086
The problem is to remove first occurring space from string in assembly 8086.
I have written a test code, which apparently is not working.
My idea is the following: set both di and si to be equal to th...
H-a-y-K
Votes: 0
Answers: 1