Skip to content

Instantly share code, notes, and snippets.

@onokatio
Last active November 27, 2019 11:37
Show Gist options
  • Save onokatio/7c7688ad05d778ac9a12e904d4a2515b to your computer and use it in GitHub Desktop.
Save onokatio/7c7688ad05d778ac9a12e904d4a2515b to your computer and use it in GitHub Desktop.
pushi 0
storel "i"
mvsp 1

jp "start"

label "loop"
    pushl "i"
    pushi 1
    add
    storel "i"
    mvsp 1
    
    label "start"
        pushl "i"
        pushi 10
        le
        jf "exit"
        
        pushl "i"
        pushl "s"
        add
        storel "s"
        mvsp 1

        jp "loop"

label "exit"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment