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 @@
MOV AX,0345h
MOV BX,0444h
AND AX,BX

View file

@ -0,0 +1,3 @@
MOV AX,03h
MOV CL,02h
RCL AX,CL

View file

@ -0,0 +1,3 @@
MOV AX,03h
MOV CL,02h
RCR AX,CL

View file

@ -0,0 +1,3 @@
MOV AX,0345h
MOV BX,0444h
OR AX,BX

View file

@ -0,0 +1,3 @@
MOV AX,0345h
MOV BX,0444h
XOR AX,BX

View file

@ -0,0 +1,2 @@
MOV AX,0345h
NOT AX

View file

@ -0,0 +1,3 @@
MOV AX,03h
MOV CL,02h
SHL AX,CL

View file

@ -0,0 +1,3 @@
MOV AX,03h
MOV CL,02h
SHR AX,CL

View file

@ -0,0 +1,3 @@
MOV AX,03h
MOV CL,02h
SAR AX,CL

View file

@ -0,0 +1,3 @@
MOV AX,03h
MOV CL,02h
ROL AX,CL

View file

@ -0,0 +1,3 @@
MOV AX,03h
MOV CL,02h
ROR AX,CL