首页
网站开发
桌面应用
管理软件
微信开发
App开发
嵌入式软件
工具软件
数据采集与分析
其他
首页
>
> 详细
代写data编程、代做Java/Python程序语言
项目预算:
开发周期:
发布时间:
要求地区:
Project1
Overview
In Project 1, our objective is to familiarize you with some fundamental
concepts within RISC-V and enable you to write basic programs using
RISC-V assembly language. In this assignment, your first task is to
implement a simple ALU (Arithmetic Logic Unit) that produces correct
outputs based on the provided test inputs. Following that, you are
required to utilize RISC-V to implement several straightforward programs,
such as generating odd values within a specified range and printing
simple drawings based on a bitmap.
Before you start working on this project, you need to:
Requirements
1. ALU
In general, the ALU here is a rather simple Arithmetic Logic Unit. There is
no need for instruction parsing; instead, you are only required to
implement various ALU functions corresponding to different instructions,
such as add, sub and so on. The inputs for the ALU functions come in
single forms: r1, r2, rd which specify the locations of registers of inputs
and output.
1.1 ALU Functions
You are required to support the following RISC-V instruction in your ALU.
1.2 Function Format
Review the content of RISC-V
add, sub,
and, nor, or, xor
beq, bne, slt
sll, srl, sra
The initial address of the registers, denoted as t0. As the inputs in the
"and" function are indices of a pre-existing registers, some basic address
operations are necessary.
We define t1 to represent the value of the first input, t2 for the second
input, and t4 to represent the value of t1 and t2 after undergoing certain
operations within the ALU. It means that you should do this in your
program and we will check it randomly. If you don't follow the pattern,
you will miss 50% points related to the alu task.
2.Branch
In this program, your task is to determine the odd numbers within a given
range based on the input. The process involves several "for" and "if"
operations, aiming to familiarize you with the branch operations in RISCV through the implementation of this program.
Function pseudocode
add:
lui a5,%hi(registers)
addi t0,a5,%lo(registers)
slli a0,a0,2
slli a1,a1,2
slli a2,a2,2
add t1, t0, a0
add t2, t0, a1
add t3, t0, a2
lw t1,0(t1)
lw t2,0(t2)
add t4, t1, t2
sw t4,0(t3)
riscv64-unknown-elf-gcc -march=rv32im -mabi=ilp32 -O3 alu.s -o
alu
./alu
In this program, you should use t0 to represent the index, t1 for i, t2 for j,
and t3 for k. Similar to the ALU program, failing to adhere to these
specifications may result in a 50% point deduction.
Hint
__floatsidf : Call the function __floatsidf . This function involves
converting an integer to a double-precision floating-point number.
sqrt : Call the sqrt function, which computes the square root of a
floating-point number.
__fixdfsi : Call the function __fixdfsi . This function likely involves
converting a double-precision floating-point number to an integer.
The statements can get the square root of i.
This instruction would calculate the remainder when the value in register
a is divided by the value in register b , and store the result in the
primes = array of integers
procedure generatePrimes(n)
index = 0
for i from 2 to n
k = integer square root of i
for j from 2 to k
if i is divisible by j
break
if j>k is true
primes[index] = i
index = index + 1
addi a0,t1,0
call __floatsidf
call sqrt
call __fixdfsi
rem a, b, result
specified destination register ( result in this case).
3.Array
In this program, you are required to read a two-dimensional array storing
a bitmap and print out the bits, thereby generating a meaningful output.
riscv64-unknown-elf-gcc -march=rv32im -mabi=ilp32 -O3 branch.s -o
branch -lm
./branch
unsigned char bitmap[][8] = {
{0x10, 0x00, 0x10, 0x00, 0x10, 0x40, 0x00, 0x20},
{0x08, 0x04, 0x10, 0x00, 0x10, 0x40, 0x00, 0xf0},
{0x7f, 0x78, 0x1f, 0xfc, 0x10, 0x40, 0x1f, 0x00},
{0x00, 0x40, 0x20, 0x80, 0x13, 0xf8, 0x10, 0x00},
{0x22, 0x40, 0x20, 0x80, 0x18, 0x48, 0x11, 0x00},
{0x14, 0x40, 0x40, 0x80, 0x54, 0x48, 0x21, 0x00},
{0xff, 0x7e, 0x1f, 0xf8, 0x50, 0x48, 0x21, 0x00},
{0x08, 0x48, 0x10, 0x80, 0x50, 0x48, 0x3f, 0xfc},
{0x08, 0x48, 0x10, 0x80, 0x97, 0xfe, 0x01, 0x00},
{0x7f, 0x48, 0x10, 0x80, 0x10, 0x40, 0x09, 0x20},
{0x08, 0x48, 0xff, 0xfe, 0x10, 0xa0, 0x09, 0x10},
{0x2a, 0x48, 0x00, 0x80, 0x10, 0xa0, 0x11, 0x08},
{0x49, 0x48, 0x00, 0x80, 0x11, 0x10, 0x21, 0x04},
{0x88, 0x88, 0x00, 0x80, 0x11, 0x10, 0x41, 0x04},
{0x28, 0x88, 0x00, 0x80, 0x12, 0x08, 0x05, 0x00},
{0x11, 0x08, 0x00, 0x80, 0x14, 0x06, 0x02, 0x00}
};
procedure printBitmap(size):
for i from 0 to size - 1:
for j from 0 to 7:
for k from 7 to 0 step -1:
......
In this program, you only need implement printBitmap. Besides, you
should use t0 to represent the size, t1 for i, t2 for j, and t3 for k. Failing to
adhere to these specifications may result in a 50% point deduction.
Result should be similar to
Hint
In this problem, you may need to print three kinds of character.
By checking the ascii code of characters, you will understand it.
Report
The report of this project should be no longer than 5 pages. Keep your
words concise and clear.
In your report, you should include:
li a0 10
call putchar #print '\n'
li a0 32
call putchar #print ' '
li a0 49
call putchar #print '1'
riscv64-unknown-elf-gcc -march=rv32im -mabi=ilp32 -O3 array.s -o
array
./array
Submission and Grading
1. Submission
You should put all of your source files (alu.s, branch.s, array.s, report.pdf)
in a folder and compress it in a zip. Name it with your student ID. Submit
it through BB. The deadline for this report is 2024/03/10. If you fail to
submit your assignment by the deadline, 10 points will be deducted from
your original mark for each day you are late, up to a maximum of 30
points. Assignments submitted more than 3 days after the deadline will
not be considered valid and will be marked as 0 points.
2. Grading Details
Implement the task about ALU - 40 %
Implement the task about odd number - 25%
Implement the task about bitmap - 25%
Report - 10%
In grading, we have more tests about tasks. Please make sure the
completeness of codes.
3. Honesty
We take your honesty seriously. If you are caught copying others' code,
you will get an automatic 0 in this project. Please write your own code.
1. Your big picture thoughts and ideas, showing us you really
understand RISC-V assembly.
2. The high level implementation ideas. i.e. how you break down the
problem into small problems, etc.
3. The implementation details. i.e. explain some special tricks used.
4. the screenshots of result
软件开发、广告设计客服
QQ:99515681
邮箱:99515681@qq.com
工作时间:8:00-23:00
微信:codinghelp
热点项目
更多
代做ceng0013 design of a pro...
2024-11-13
代做mech4880 refrigeration a...
2024-11-13
代做mcd1350: media studies a...
2024-11-13
代写fint b338f (autumn 2024)...
2024-11-13
代做engd3000 design of tunab...
2024-11-13
代做n1611 financial economet...
2024-11-13
代做econ 2331: economic and ...
2024-11-13
代做cs770/870 assignment 8代...
2024-11-13
代写amath 481/581 autumn qua...
2024-11-13
代做ccc8013 the process of s...
2024-11-13
代写csit040 – modern comput...
2024-11-13
代写econ 2070: introduc2on t...
2024-11-13
代写cct260, project 2 person...
2024-11-13
热点标签
mktg2509
csci 2600
38170
lng302
csse3010
phas3226
77938
arch1162
engn4536/engn6536
acx5903
comp151101
phl245
cse12
comp9312
stat3016/6016
phas0038
comp2140
6qqmb312
xjco3011
rest0005
ematm0051
5qqmn219
lubs5062m
eee8155
cege0100
eap033
artd1109
mat246
etc3430
ecmm462
mis102
inft6800
ddes9903
comp6521
comp9517
comp3331/9331
comp4337
comp6008
comp9414
bu.231.790.81
man00150m
csb352h
math1041
eengm4100
isys1002
08
6057cem
mktg3504
mthm036
mtrx1701
mth3241
eeee3086
cmp-7038b
cmp-7000a
ints4010
econ2151
infs5710
fins5516
fin3309
fins5510
gsoe9340
math2007
math2036
soee5010
mark3088
infs3605
elec9714
comp2271
ma214
comp2211
infs3604
600426
sit254
acct3091
bbt405
msin0116
com107/com113
mark5826
sit120
comp9021
eco2101
eeen40700
cs253
ece3114
ecmm447
chns3000
math377
itd102
comp9444
comp(2041|9044)
econ0060
econ7230
mgt001371
ecs-323
cs6250
mgdi60012
mdia2012
comm221001
comm5000
ma1008
engl642
econ241
com333
math367
mis201
nbs-7041x
meek16104
econ2003
comm1190
mbas902
comp-1027
dpst1091
comp7315
eppd1033
m06
ee3025
msci231
bb113/bbs1063
fc709
comp3425
comp9417
econ42915
cb9101
math1102e
chme0017
fc307
mkt60104
5522usst
litr1-uc6201.200
ee1102
cosc2803
math39512
omp9727
int2067/int5051
bsb151
mgt253
fc021
babs2202
mis2002s
phya21
18-213
cege0012
mdia1002
math38032
mech5125
07
cisc102
mgx3110
cs240
11175
fin3020s
eco3420
ictten622
comp9727
cpt111
de114102d
mgm320h5s
bafi1019
math21112
efim20036
mn-3503
fins5568
110.807
bcpm000028
info6030
bma0092
bcpm0054
math20212
ce335
cs365
cenv6141
ftec5580
math2010
ec3450
comm1170
ecmt1010
csci-ua.0480-003
econ12-200
ib3960
ectb60h3f
cs247—assignment
tk3163
ics3u
ib3j80
comp20008
comp9334
eppd1063
acct2343
cct109
isys1055/3412
math350-real
math2014
eec180
stat141b
econ2101
msinm014/msing014/msing014b
fit2004
comp643
bu1002
cm2030
联系我们
- QQ: 9951568
© 2021
www.rj363.com
软件定制开发网!