python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
Assembly NASM x64 JMP not working as intended
I have the following code:
section .data
array times 1024 DW 0
section .text
global _start
_start:
mov ecx, array ; Store the ponter to the first array element
; ---- ADD ----
...

Hello Hello
Votes: 0
Answers: 1
MOVZBQ equivalent in NASM
Background:
I have been learning x86_64 assembly using NASM on a Linux system and was writing a subroutine for strlen(const char *str)
I wanted to copy one byte starting from a pointer stored in rax ...

Ziad
Votes: 0
Answers: 1
Trying to compare two strings in x86-64
global _start
section .data
firstMsg: db "hello worms, please say the passcode", 10
firstLen: equ $ - firstMsg
secondMsg: db "Correct", 10
secondLen: equ $ - secon...
Mr_Arsonist
Votes: 0
Answers: 1
Using the CGA/EGA/VGA planar graphics modes
I have trouble to grasp how to use colors in CGA/EGA/VGA video graphics modes. The video modes I'm particularly interested in are 0Dh (EGA 320x200) and 12h (VGA 640x480). Both of these modes have 4 pl...
MegaBrutal
Votes: 0
Answers: 1