Skip to content
View s-mv's full-sized avatar
💭
Our realities differ.
💭
Our realities differ.

Highlights

  • Pro

Block or report s-mv

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
s-mv/README.md

Hello there!

It's smv! Who doesn't know what else to add in here.

Pinned Loading

  1. gcode-plus-plus gcode-plus-plus Public

    gcode++

    C++ 2

  2. smvm smvm Public

    Register-based bytecode VM implementation.

    C 10

  3. brainfudge brainfudge Public

    Badly designed brainfuck interpreter.

    C

  4. nqueens.asm nqueens.asm
    1
    ; build instructions
    2
    ; nasm -g -felf64 nqueens.asm -o nqueens.o
    3
    ; ld nqueens.o -o nqueens
    4
    ; ./nqueens
    5
    
                  
  5. Simple calculator in RISCV. Supports... Simple calculator in RISCV. Supports variables, TODO functions (maybe later though!)
    1
    ### math.s - a simple calculator in riscv asm ###
    2
    # grammar
    3
    #    program -> stmt
    4
    #    stmt    -> assign | expr
    5
    #    assign  -> 'let' variable '=' expr