Skip to content
View nelup20's full-sized avatar
😭
How can ISAs be real if our macro-ops aren't real...
😭
How can ISAs be real if our macro-ops aren't real...
Block or Report

Block or report nelup20

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.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, 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
nelup20/README.md

I like to make computer go beep boop

.global _start
.intel_syntax noprefix

_start:
        mov rax, 1
        mov rdi, 1
        mov rdx, 61
        lea rsi, [message]
        syscall

        mov rax, 60
        mov rdi, 0
        syscall

message:
        .byte 0x52,0x6F,0x73,0x65,0x73,0x20,0x61,0x72,0x65,0x20,0x72,0x65,0x64,0x0A
        .byte 0x56,0x69,0x6F,0x6C,0x65,0x74,0x73,0x20,0x61,0x72,0x65,0x20,0x62,0x6C,0x75,0x65,0x0A
        .byte 0x49,0x20,0x68,0x61,0x74,0x65,0x20,0x53,0x63,0x72,0x75,0x6D,0x0A
        .byte 0x41,0x6E,0x64,0x20,0x62,0x75,0x72,0x6E,0x6F,0x75,0x74,0x20,0x74,0x6F,0x6F,0x0A,0x00

Pinned

  1. asciiator asciiator Public

    A CLI tool to turn image and video files into ASCII art

    Python 2

  2. AdventOfCode AdventOfCode Public

    Java

  3. el-restaurante el-restaurante Public

    Mock/Fake restaurant site

    HTML

  4. wattz wattz Public

    Electricity company mockup

    EJS

  5. json-server-rust json-server-rust Public

    Forked from vuong-buihv/json-server-rust

    Rust

  6. Shell script to change the author em... Shell script to change the author email in past commits to a new email (so you don't accidentally change ALL emails in case there are multiple authors). Force pushes to main/master branch. Use at your own risk!
    1
    #!/usr/bin/env bash
    2
    
    
    3
    if ! [ "$(command -v git-filter-repo)" ]; then
    4
            echo 'Error: git-filter-repo is not installed. If you have pip: "pip install git-filter-repo"';
    5
            exit 1;