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
I compiled a assembly code on kali linux but i cant run it
I tried to run some code in Kali Linux in my kernel and it compiled but I cant run it. I followed some guys on YouTube and when I type ld hello.o -o hello it says that there is no Ld command!!
code is...
luksapop
Votes: 0
Answers: 2
BIOS Int 13h 08 DBT issue Bytes per sector code returns 0xF0 instead of 0x00 - 0x04
I was using int 13h 08 to load disk parameters and got an invalid value from the disk base table (dbt).
The value in question was 0xF0.
note: dbt is returned in es:di
Reference to int 13h 08: https://...

TheNullPlayer
Votes: 0
Answers: 1
Is instruction encoded differently from .so file to runtime memory?
I have an Android .so file that uses ARM-V7A instruction set.
I drag it into IDA, and there is one line that shows :
0x1000: b #0x102c
And the hex window shows that the binary code of b #0x102c is 14...
user16387400
Votes: 0
Answers: 1