Skip to content
View Foxomax's full-sized avatar
:shipit:
Programming
:shipit:
Programming
  • Nicaragua
  • 22:22 (UTC -06:00)

Highlights

  • Pro

Block or report Foxomax

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 is supported. This note will only be visible to you.
Report abuse

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

Report abuse
Foxomax/README.md

Hi, I'm Foxomax

I love the open source and low level programming

; 6502 Assembly - Profile Initialization
.org $8000              ; ROM Start Vector

RESET:
    LDX #$00            ; Initialize X index register
    SEI                 ; Disable interrupts during render

WRITE_LOOP:
    LDA DEV_ID, X       ; Load byte from profile data
    BEQ LISTEN          ; If 0 (null terminator), jump to main loop
    STA $0400, X        ; Store byte in Screen RAM (Video Matrix)
    INX                 ; Increment index
    JMP WRITE_LOOP      ; Continue loop

LISTEN:
    JMP LISTEN          ; Infinite loop (awaiting input)

DEV_ID:
    .byte "Foxomax", 0  ; Null-terminated string

Pinned Loading

  1. itstar-tech/rvm-8 itstar-tech/rvm-8 Public

    The RVM-8 is an emulator of a non-existent console called the Roverfy Console. It's inspired by the Nintendo NES (1983) with a CPU based on the MOS 6502 but with improvements—specifically, an enhan…

    C 1

  2. Roverfy Roverfy Public

    Roverfy is a web framework written in Rust

    Rust 5

  3. linux linux Public

    Forked from torvalds/linux

    Linux kernel source tree

    C

  4. yume-os yume-os Public

    YumeOS is a hobby operating system kernel written in Rust, inspired by the Linux monolithic architecture, focused on memory safety and low-level systems experimentation.

    Rust

  5. pigeon-db pigeon-db Public

    PigeonDB is a very inexpensive KeyVariable (KV) database because it uses SSDs instead of RAM. Given the current technological landscape, RAM is no longer as fast as modern SSDs. Therefore, PigeonDB…

    Makefile 1

  6. foxi-project-builder foxi-project-builder Public

    A CLI utility for scaffolding C projects with modern directory hierarchies and build-system conventions.

    C