Run Code
|
API
|
Code Wall
|
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
Group Project (Group 4)
fdafdsfdsfdsdadfas
dsafdfdsfds
displaying 9 stars
count of +ve and -ve nos.
dsfdsffdafdssd
fdsafsfsdfs
p2.asm
MyFirst Program
Hello