In assembly programming
This assignment consists of three total programming problems
1) Count To 10 in LMC
1) Count To 10 in RISC
2) find_max in x64
1(:---
loop LDA value1
OUT
SUB value2
STA value1
BRP loop
value1 DAT 10
value2 DAT 1
2:------
addi sp, sp, -8
sd ra, 0(sp)
call printf
ld ra, 0(sp)
addi sp, sp, 8
ret
3:----Right click inside the Application This PC and select properties check system type if it 64 bit OS then x64 program will run and if 32 bit OS then x86 based program will run.
For x64 (64-bit) upto 4 logical processors max worker threads =
512
For x64 (64-bit) more than 4 logical processors max worker threads
= 512+ ((# Procs – 4) * 16)
Get Answers For Free
Most questions answered within 1 hours.