Skip to content

Instantly share code, notes, and snippets.

@Reflej0
Created April 10, 2017 00:09
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Reflej0/35b4ef2efb61456531b9b902eb278dc3 to your computer and use it in GitHub Desktop.
Save Reflej0/35b4ef2efb61456531b9b902eb278dc3 to your computer and use it in GitHub Desktop.
Programa para sumar 3 variables en Assembler, en Motorola 68HC11
ORG $0000
P RMB 2
Q RMB 2
R RMB 2
S RMB 2
ORG $C000
LDAA P
LDAB Q
ABA
SUBA R
STAA S
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment