
SYSTEM CALL
CONNECT armament
CONNECT atelcapitan
SEARCH recollection_info
EXTRACT core_image
CONNECT resource
USE primary_information
APPEND c_code FROM elcapitaninfo/information.c
MATERIALIZE main_window
RELEASE RECOLLECTION
extern printf
global main
use32
section .data
fmt db `Name: %s\nProgramming Languages: %s\nFrameworks: %s\nOS: %s`, 0xA, 0
name db `ElCapitan, John`, 0
progLangs db `NASM, C, Python, JS`, 0
frameworks db `Flask, FastAPI`, 0
os db `Arch Linux`, 0
section .text
main:
; pushing arguments to the stack
push os
push frameworks
push progLangs
push name
push fmt
call printf
; clearing the stack
add esp, 20
; ok, return code is 0, exiting
xor eax, eax
ret
- Listening Ado-san's songs
- Watching Anime and reading Ranobae
- Playing games
- Coding and gaining skills
- Digging deeper into how computers work
E-mail: [email protected]