Home > OS >  Assistance on x86 Assembler running on Linux
Assistance on x86 Assembler running on Linux

Time:12-22

I am currently learning a bit of Assembler on Linux and I need your advice. Here is the small program:

.section .data
  zahlen:
   .float 12,44,5,143,223,55,0

.section .text
.global _start

_start:
    movl $0,            
  • Related