Skip to content
@LiteASM

LiteASM

LiteASM is a beginner-friendly assembly-like language

LiteASM

LiteASM is a beginner-friendly assembly-like language designed for ease of use and learning. It supports basic arithmetic and logical operations, as well as reusable code in the form of functions.

Example Program

; Calculate the sum of two numbers
MAIN:
    INPUT A        ; Read first number
    INPUT B        ; Read second number
    CALL SUM       ; Call SUM function
    PRINT Z        ; Print result
    JMP END

SUM:
    ADD Z, A, B    ; Z = A + B
    RET            ; Return to caller

END:
    ; Program ends here

License

LiteASM is licensed under the MIT License.

Popular repositories Loading

  1. .github .github Public

Repositories

Showing 1 of 1 repositories
  • .github Public
    LiteASM/.github’s past year of commit activity
    0 MIT 0 0 0 Updated Aug 9, 2024

Top languages

Loading…

Most used topics

Loading…