Csao. Nehany napja elkezdtem assemblyt tanulni ebbol a konyvbol: http://download.savannah.gnu.org/releases/pgubook/
Lenne nehany kerdesem, ami itt nincs leirva. (vagy csak en voltam tul feluletes es nem talaltam) Az alabbi kod lefordul gnu assemblerrel, de nem fordul netwide assemblerrel (minden sor error).
#PURPOSE: Simple program that exits and returns a
# status code back to the Linux kernel
#
#INPUT: none
#
#OUTPUT: returns a status code. This can be viewed
# by typing
#
# echo $?
#
# after running the program
#
#VARIABLES:
# %eax holds the system call number
# %ebx holds the return status
#
.section .data
.section .text
.globl _start
_start:
movl $1, %eax # this is the linux kernel command
# number (system call) for exiting
# a program
movl $0, %ebx # this is the status number we will
# return to the operating system.
# Change this around and it will
# return different things to
# echo $?
int $0x80 # this wakes up the kernel to run
# the exit command
Mi lehet a problema? Azt olvastam, hogy minden assemblernek kulon "nyelvjarasa" van, de azt nem tudtam hogy ennyire... :)
Hol talalhatnek informaciokat (kezdonek szolot!) arrol, hogy "hogyan is mukodik a cpu meg a memoria? Sajnos eddig, csak robosztus leirasokat talaltam.
gnu assemblert ajanlja valaki, vagy nem? (azt irtak nasm oldalan, hogy kisse buta es csunya a szintaxisa)