Skip to content

Instantly share code, notes, and snippets.

@xelemental
Created April 4, 2021 21:06
Show Gist options
  • Save xelemental/13395111120cb0f207fc869b43569c96 to your computer and use it in GitHub Desktop.
Save xelemental/13395111120cb0f207fc869b43569c96 to your computer and use it in GitHub Desktop.
  • Variables:

                      var = For defining variables
                  mov = move a value from place to another
                $RESULT = Stores the Result of an operation
    
  • Conditional Jumps:

                      JNE = Jump if not equal
                  
                      JE = Jump if Equal
                      
                      JMP = Jump
                      
                      JB = Jump if Below
                      
                      JA = Jump if Above
                      
                      CMP = Compare two operands
    
  • Commands:

                      STI = Execute F7
                  
                      run = Execute F9 (run)
                      
                      STO = Execute F8
                      
                      BC = Clear a Breakpoint
                      
                      BP = Set BreakPoint
                      
                      BPHWS = Set Hardware Breakpoint
                      
                      BPHWC = Remove Hardware Breakpoint
                      
                      msg = Display Message
                      
                      find = find an expression at an address
                      
                      cmt = put comment
                      
                      go = go to address
    
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment