Skip to content
View beddinao's full-sized avatar

Organizations

@ip-packet @WeDesignTeam

Block or report beddinao

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.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. 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
beddinao/README.md
// KickAss 6502 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
*/

Pinned Loading

  1. commodore_64_emulator commodore_64_emulator Public

    an 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

  2. webserv webserv Public

    Forked from zelhajou/ft_net_webserv

    High-performance HTTP Web Server in C++.

    C++

  3. agentic-QA-system agentic-QA-system Public

    conversational AI agent that answers questions based on a specific dataset of documents.

    Python 1

  4. ip-packet/port_scanner ip-packet/port_scanner Public

    port scanning tool that identifies open ports or a range of ports state on target networks or hosts.

    C 2 1

  5. enhanced-chip-8-emulator enhanced-chip-8-emulator Public

    very accurate interpreter for the CHIP-8 programming language and virtual machine specification

    C 1

  6. ip-packet/_traceroute ip-packet/_traceroute Public

    network 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 1 1