Data commit

This commit is contained in:
Ingy döt Net 2023-07-01 11:58:00 -04:00
parent 7387c8f97b
commit cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions

View file

@ -0,0 +1,3 @@
MOVE.W #$100,D0
MOVE.W #$200,D1
AND.W D0,D1

View file

@ -0,0 +1,3 @@
MOVE.W #$FF00,D0
MOVE.W #$04,D1
ROXL.W D1,D0

View file

@ -0,0 +1,3 @@
MOVE.W #$FF00,D0
MOVE.W #$04,D1
ROXR.W D1,D0

View file

@ -0,0 +1,3 @@
MOVE.W #$100,D0
MOVE.W #$200,D1
OR.W D0,D1

View file

@ -0,0 +1,3 @@
MOVE.W #$100,D0
MOVE.W #$200,D1
EOR.W D0,D1

View file

@ -0,0 +1,2 @@
MOVE.W #$100,D0
NOT.W D0

View file

@ -0,0 +1,3 @@
MOVE.W #$FF,D0
MOVE.W #$04,D1
LSL.W D1,D0 ;shifts 0x00FF left 4 bits

View file

@ -0,0 +1,3 @@
MOVE.W #$FF,D0
MOVE.W #$04,D1
LSR.W D1,D0 ;shifts 0x00FF right 4 bits

View file

@ -0,0 +1,3 @@
MOVE.W #$FF00,D0
MOVE.W #$04,D1
ASR.W D1,D0 ;shifts 0xFF00 right 4 bits, preserving its sign

View file

@ -0,0 +1,3 @@
MOVE.W #$FF00,D0
MOVE.W #$04,D1
ROL.W D1,D0

View file

@ -0,0 +1,3 @@
MOVE.W #$FF00,D0
MOVE.W #$04,D1
ROR.W D1,D0