// 6502 Assembly (Kick Assembler)
.pc = $0801 "Basic Upstart"
:BasicUpstart(start)
.pc = $0810 "About Me"
.encoding "screencode_upper"
text:
.text " "
.text " BILAL EDDINAOUI "
.text " "
.text " SYSTEMS ARCHITECT "
.text " "
.text " C/C++ | TCP/IP | AGENTIC AI "
.text " "
.byte $00
start:
lda #$00
sta $d020
sta $d021
ldx #$00
print:
lda text,x
beq loop
sta $0400,x
lda #$01
sta $d800,x
inx
bne print
loop:
jmp loop
/*
. can be run online on my emulator: https://c64.beddinao.me
. or on: https://ide.retrogamecoders.com/?platform=c64
.prg binary file: https://c64.beddinao.me/programs/About_Me.prg
*/
Highlights
Pinned Loading
-
commodore_64_emulator
commodore_64_emulator Publican emulator of the Commodore 64 home computer (C64) that runs on UNIX machines and executes programs intended for the old 8-bit computer
C 4
-
webserv
webserv PublicForked from zelhajou/ft_net_webserv
High-performance HTTP Web Server in C++.
C++
-
6502_cpu_emulator
6502_cpu_emulator PublicInstruction-accurate 6502 CPU emulator in C, designed to be fast, simple and integrated into other emulators
Assembly 2
-
port_scanner
port_scanner Publicport scanning tool that identifies open ports or a range of ports state on target networks or hosts.
C 1
-
enhanced-chip-8-emulator
enhanced-chip-8-emulator Publicvery accurate interpreter for the CHIP-8 programming language and virtual machine specification
C 1
-
ft_traceroute
ft_traceroute Publicnetwork diagnostic tool that tracks the path a data packet takes from a source to a destination, showing every router along the way and the time it takes to reach each one
C
If the problem persists, check the GitHub status page or contact support.




