-
Notifications
You must be signed in to change notification settings - Fork 1
/
final.asm
422 lines (261 loc) · 6.31 KB
/
final.asm
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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
.data
welcome_string: .asciiz "Welcome to Bank Management System\n"
array: .word 1000, 500
.word 1001, 900
.word 1002, 1500
.word 1003, 5000
.word 1004, 3000
input1: .asciiz "\nPress 1 for operation \nPress 2 to create account: "
choice: .asciiz "\nEnter 1 to deposit amount,\n2 to withdraw amount, \n3 for transfer : "
input2: .asciiz "\nEnter account number: "
input3: .asciiz "\nEnter amount to deposit: "
input4: .asciiz "\nEnter amount to withdraw: "
msg: .asciiz "\nYou don't have enough amount!!"
msg1:.asciiz "\nEnter your account number: "
msg2: .asciiz "\nEnter reciever's account number: "
msg3: .asciiz "\nEnter ammount to transfer: "
.text
.globl main
.ent main
main:
#calling welcome
jal welcome
#calling input1 function
jal input1_function
# $t0 = 1 or 2
move $t0, $a0
# hardcode $t1 = 2
addi $t1, $0, 2
# hardcode $t3 = 3
addi $t3, $0, 3
#branch if user input 2 to two
beq $t0, $t1, two
jal choice_message
# $t2 = 1 2 OR 3
move $t2, $a0
# if choice is 2 then move to two two
beq $t2, $t1, twotwo
# if choice is 3 then move to three three
beq $t2, $t3, threethree
jal choice_one
li $v0, 10
syscall
twotwo:
jal choice_two
li $v0, 10
syscall
threethree:
jal choice_three
li $v0, 10
syscall
# jal two
#Exiting main
li $v0, 10
syscall
.end main
#Welcome Function
.ent welcome
welcome:
li $v0, 4
la $a0, welcome_string
syscall
jr $ra
.end welcome
# Input1 Function
.ent input1_function
input1_function:
#Displaying input1 text
li $v0, 4
la $a0, input1
syscall
#Taking User Input, if it is 1 or 2
li $v0, 5
syscall
jr $ra
.end input1_function
# Choice Message
.ent choice_message
choice_message:
#displaying choice message
li $v0, 4
la $a0, choice
syscall
#taking User input 1, 2, 3
li $v0, 5
syscall
move $a0, $v0
jr $ra
.end choice_message
.ent choice_one
choice_one:
#array address in t9
la $t9, array
#user wants to deposit amount
#Displaying the message to enter account number
li $v0, 4
la $a0, input2
syscall
#Reading user's account number
li $v0, 5
syscall
#saving account number to $t4
move $t4, $v0
#Displaying message to enter amount to deposit
li $v0, 4
la $a0, input3
syscall
#Reading user's input of amount to deposit
li $v0, 5
syscall
#saving amount to deposit into $t5
move $t5, $v0
#setting loop variable t6 to 0
addi $t6, $0, 0
#setting $t7 to 5
addi $t7, $0, 5
addi $sp, $sp, -4
sw $ra, 0($sp)
loop1:
beq $t6, $t7, exit
#setting column index to 0 which will remain constant
addi $a2, $0, 0
#setting row index to loop variable
addi $a1, $t6, 0
jal calculate_address
#address is in t8
move $s5, $v0
lw $t8, ($s5)
bne $t8, $t4, here
#loading amount of that account number into s3
lw $s3, 4($s5)
#adding amount to deposit to actual amount
add $s3, $s3, $t5
#storing back to that address
sw $s3, 4($s5)
j exit
here:
#adding 1 in loop variable
addi $t6, $t6, 1
j loop1
exit:
######
lw $s4, 4($s5)
li $v0,1
move $a0, $s4
syscall
######
lw $ra, 0($sp)
jr $ra
.end choice_one
#Choice two function
.ent choice_two
choice_two:
#User wants to withdraw amount
#Displaying a message to display account number
li $v0, 4
la $a0, input2
syscall
#Reading user's account number
li $v0, 5
syscall
#saving account number to $t4
move $t4, $v0
#Display message of amount to withdraw
li $v0, 4
la $a0, input4
syscall
#Reading user's input of amount to withdraw
li $v0, 5
syscall
#saving amount to withdraw into $t5
move $t5, $v0
#setting loop variable t6 to 0
addi $t6, $0, 0
#setting $t7 to 5
addi $t7, $0, 5
addi $sp, $sp, -4
sw $ra, 0($sp)
loop2:
beq $t6, $t7, exit1
#setting column index to 0 which will remain constant
addi $a2, $0, 0
#setting row index to loop variable
addi $a1, $t6, 0
jal calculate_address
#address in $t8
move $s5, $v0
lw $t8, ($s5)
bne $t8, $t4, here1
#loading amount of that account number into s3
lw $s3, 4($s5)
# checking if amount is enough to withdraw
slt $s6, $s3, $t5
bne $s6, $0, not_enough_amount
#detecting amount from account
sub $s3, $s3, $t5
sw $s3, 4($s5)
j exit1
here1:
#adding 1 in loop variable
addi $t6, $t6, 1
j loop2
exit1:
######
lw $s4, 4($s5)
li $v0,1
move $a0, $s4
syscall
######
lw $ra, 0($sp)
addi $sp, $sp, 4
jr $ra
.end choice_two
#Choice three function
.ent choice_three
choice_three:
#User wants to transfer amount
jr $ra
.end choice_three
#calculate address
.ent calculate_address
calculate_address:
addi $sp, $sp, -8
sw $s6, 0($sp)
sw $s7, 4($sp)
#array address in t9
la $t9, array
#column_size = 2
addi $s6, $0, 2
#data_size = 4
addi $s7, $0, 4
# row index
move $s0, $a1
# column index
move $s1, $a2
# s2 = rowindex * column size
mul $s2, $s0, $s6
# s2 = + cloumn index
add $s2, $s2, $s1
# s2 = * data_size
mul $s2, $s2, $s7
# adding base address
add $s2, $s2, $t9
#returning address answer
move $v0, $s2
lw $s6, 0($sp)
lw $s7, 4($sp)
addi $sp, $sp, 8
jr $ra
.end calculate_address
not_enough_amount:
li $v0, 4
la $a0, msg
syscall
li $v0, 10
syscall
#starting two option
#create account function
.ent two
two:
jr $ra
.end two