-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhw1.asm
77 lines (66 loc) · 1.68 KB
/
hw1.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
https://powcoder.com
代写代考加微信 powcoder
Assignment Project Exam Help
Add WeChat powcoder
https://powcoder.com
代写代考加微信 powcoder
Assignment Project Exam Help
Add WeChat powcoder
# type your first and last name here
# type your Net ID here (e.g., jmsmith)
# type your SBU ID # here (e.g., 111234567)
.data
# Command-line arguments
num_args: .word 0
addr_arg0: .word 0
addr_arg1: .word 0
addr_arg2: .word 0
addr_arg3: .word 0
no_args: .asciiz "You must provide at least one command-line argument.\n"
# Error messages
invalid_operation_error: .asciiz "INVALID_OPERATION\n"
invalid_args_error: .asciiz "INVALID_ARGS\n"
# Output strings
zero_str: .asciiz "Zero\n"
neg_infinity_str: .asciiz "-Inf\n"
pos_infinity_str: .asciiz "+Inf\n"
NaN_str: .asciiz "NaN\n"
floating_point_str: .asciiz "_2*2^"
# Miscellaneous strings
nl: .asciiz "\n"
# Put your additional .data declarations here, if any.
# Main program starts here
.text
.globl main
main:
# Do not modify any of the code before the label named "start_coding_here"
# Begin: save command-line arguments to main memory
sw $a0, num_args
beq $a0, 0, zero_args
beq $a0, 1, one_arg
beq $a0, 2, two_args
beq $a0, 3, three_args
four_args:
lw $t0, 12($a1)
sw $t0, addr_arg3
three_args:
lw $t0, 8($a1)
sw $t0, addr_arg2
two_args:
lw $t0, 4($a1)
sw $t0, addr_arg1
one_arg:
lw $t0, 0($a1)
sw $t0, addr_arg0
j start_coding_here
zero_args:
la $a0, no_args
li $v0, 4
syscall
j exit
# End: save command-line arguments to main memory
start_coding_here:
# Start the assignment by writing your code here
exit:
li $v0, 10 # terminate program
syscall