Initial data commit
This commit is contained in:
parent
72d218235f
commit
f23f22d71c
199087 changed files with 3378941 additions and 0 deletions
3
Task/Machine-code/68000-Assembly/machine-code-1.68000
Normal file
3
Task/Machine-code/68000-Assembly/machine-code-1.68000
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
MOVE.B #7,D0
|
||||
ADD.B #12,D0
|
||||
RTS
|
||||
10
Task/Machine-code/68000-Assembly/machine-code-2.68000
Normal file
10
Task/Machine-code/68000-Assembly/machine-code-2.68000
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
LEA CodeArray,A0
|
||||
MOVE.L #$103C0007,(A0)+ ;MOVE.B #7,D0
|
||||
MOVE.L #$D03C000C,(A0)+ ;ADD.B #12,D0
|
||||
MOVE.W #$4E75,(A0)+ ;RTS
|
||||
JSR CodeArray
|
||||
|
||||
JMP $ ;halt the cpu, we're done.
|
||||
|
||||
CodeArray:
|
||||
DS.B 16 ;16 bytes of padding (this is assumed to be RAM)
|
||||
Loading…
Add table
Add a link
Reference in a new issue