Skip to content
View wise2jz's full-sized avatar

Block or report wise2jz

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
wise2jz/README.md

section	.text
	global _start       
_start:                 ;entry point
	mov edx, len    ;message length
	mov ecx, msg    ;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
msg db 'Fav: EVO IX',0xa ;our dear string
len equ	$ - msg	         ;length of our dear string

Pinned Loading

  1. wise2jz wise2jz Public