diff options
| author | Camille Mougey <camille.mougey@cea.fr> | 2015-01-21 17:46:26 +0100 |
|---|---|---|
| committer | Camille Mougey <camille.mougey@cea.fr> | 2015-01-23 17:24:43 +0100 |
| commit | 7ce340c2e62d985e92c42add8ffc385d54360a91 (patch) | |
| tree | 920c6d567ba941b92a4aba3cfeec72c0e80bf92c /example/samples/msp430.S | |
| parent | 9206458e0f4b815e4af68f8978d96d14632a087f (diff) | |
| download | miasm-7ce340c2e62d985e92c42add8ffc385d54360a91.tar.gz miasm-7ce340c2e62d985e92c42add8ffc385d54360a91.zip | |
Example/ASM: Extract asm sources to sample dir
Diffstat (limited to 'example/samples/msp430.S')
| -rw-r--r-- | example/samples/msp430.S | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/example/samples/msp430.S b/example/samples/msp430.S new file mode 100644 index 00000000..77f4b448 --- /dev/null +++ b/example/samples/msp430.S @@ -0,0 +1,8 @@ +main: + mov.w 0x10, R10 + mov.w 0x0, R11 +loop: + add.w 1, R11 + sub.w 1, R10 + jnz loop + mov.w @SP+, PC |