Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
|
|
@ -0,0 +1,3 @@
|
|||
MOVE.W #$100,D0
|
||||
MOVE.W #$200,D1
|
||||
AND.W D0,D1
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
MOVE.W #$FF00,D0
|
||||
MOVE.W #$04,D1
|
||||
ROXL.W D1,D0
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
MOVE.W #$FF00,D0
|
||||
MOVE.W #$04,D1
|
||||
ROXR.W D1,D0
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
MOVE.W #$100,D0
|
||||
MOVE.W #$200,D1
|
||||
OR.W D0,D1
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
MOVE.W #$100,D0
|
||||
MOVE.W #$200,D1
|
||||
EOR.W D0,D1
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
MOVE.W #$100,D0
|
||||
NOT.W D0
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
MOVE.W #$FF,D0
|
||||
MOVE.W #$04,D1
|
||||
LSL.W D1,D0 ;shifts 0x00FF left 4 bits
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
MOVE.W #$FF,D0
|
||||
MOVE.W #$04,D1
|
||||
LSR.W D1,D0 ;shifts 0x00FF right 4 bits
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
MOVE.W #$FF00,D0
|
||||
MOVE.W #$04,D1
|
||||
ASR.W D1,D0 ;shifts 0xFF00 right 4 bits, preserving its sign
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
MOVE.W #$FF00,D0
|
||||
MOVE.W #$04,D1
|
||||
ROL.W D1,D0
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
MOVE.W #$FF00,D0
|
||||
MOVE.W #$04,D1
|
||||
ROR.W D1,D0
|
||||
Loading…
Add table
Add a link
Reference in a new issue