Run Code
|
API
|
Code Wall
|
Users
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
The Code
;nasm 2.13.02 section .text global _start ;must be declared for linker (ld) _start: ;tell linker entry point mov edx,12 ;message length mov ecx, stars ;message to write mov ebx,1 ;file descriptor (stdout) mov eax,4 ;system call number (sys_write) int 0x80 ;call kernel mov eax,1 ;system call number (sys_exit) int 0x80 ;call kernel section .data stars times 12 db '#^#'
run
|
edit
|
history
|
help
0
Please
log in
to post a comment.
Passwd
lec4bb.asm
FirstASMProgram_tPham_
CMSC313_L1
arithmetic
calculate_age
assembly program to incease the entered number by 1
First Program Group Lab
Input and Display a number
Frequency_of_an_element_from_an_array
Please log in to post a comment.