-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathShift.inc
128 lines (104 loc) · 2.18 KB
/
Shift.inc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
;base_addr => offset address of an array
;sflag => 0 => shift left , 1=> shift right
Shift MACRO base_addr,start,sflag,froggy,froggy2
LOCAL ShiftRight
LOCAL ShiftLeft
LOCAL shift_loopL
LOCAL shift_loopR
LOCAL Done
LOCAL Frog_outL
LOCAL Frog_outR
LOCAL Frog_outL2
LOCAL Frog_outR2
pusha
mov ax,0
mov bx,0
mov cx,0
mov dx,0
mov cx,31
add cx,base_addr
add cx,start
mov al,sflag
cmp al,1
jnz ShiftRight
ShiftLeft:
push cx
cmp cx,froggy
jb Frog_outL
sub cx,31
cmp cx,froggy
ja Frog_outL
dec froggy
cmp cx,froggy
jbe Frog_outL
add cx,31
mov froggy ,cx
Frog_outL:
pop cx
cmp cx,froggy2
jb Frog_outL2
sub cx,31
cmp cx,froggy2
ja Frog_outL2
dec froggy2
cmp cx,froggy2
jbe Frog_outL2
add cx,31
mov froggy2 ,cx
Frog_outL2:
mov bx,base_addr
add bx, start
mov cx,31
mov dh,[bx]
shift_loopL:
mov dl,[bx+1]
mov [bx],dl
inc bx
;cmp bx,31
;jne Shift_loopL
loop shift_LoopL
mov [bx],dh;put the first element in the last element
jmp Done
ShiftRight:
push cx
cmp cx,froggy
jb Frog_outR
sub cx,31
cmp cx,froggy
ja Frog_outR
inc froggy
add cx,31
cmp cx,froggy
jae Frog_outR
sub cx,31
mov froggy,cx
Frog_outR:
pop cx
cmp cx,froggy2
jb Frog_outR2
sub cx,31
cmp cx,froggy2
ja Frog_outR2
inc froggy2
add cx,31
cmp cx,froggy2
jae Frog_outR2
sub cx,31
mov froggy2,cx
Frog_outR2:
mov bx,base_addr
add bx,start
add bx,31
mov dh,[bx]
mov cx,31
shift_loopR:
mov dl,[bx-1]
mov [bx],dl
dec bx
;cmp bx,base_addr
;jne Shift_loopR
loop shift_loopR
mov [bx],dh;put the last element in the first element
Done:
popa
ENDM Shift