initial commit
This commit is contained in:
commit
4219ee484f
7 changed files with 231 additions and 0 deletions
42
ass1/poly.asm
Normal file
42
ass1/poly.asm
Normal file
|
|
@ -0,0 +1,42 @@
|
|||
poly START 0
|
||||
start LDA x0 .pristejemo x0 v A
|
||||
|
||||
LDB x
|
||||
LDS x
|
||||
LDT x1
|
||||
MULR S, T
|
||||
ADDR T, A .pristejemo x0 * x
|
||||
|
||||
LDT x2
|
||||
MULR B, S .izracunamo x^2
|
||||
MULR S, T
|
||||
ADDR T, A
|
||||
|
||||
LDT x3
|
||||
MULR B, S .izracunamo x^3
|
||||
MULR S, T
|
||||
ADDR T, A
|
||||
|
||||
LDT x4
|
||||
MULR B, S .izracunamo x^4
|
||||
MULR S, T
|
||||
ADDR T, A
|
||||
|
||||
STA rez
|
||||
|
||||
halt J halt
|
||||
END start
|
||||
|
||||
|
||||
.polinom
|
||||
x4 WORD 1
|
||||
x3 WORD 2
|
||||
x2 WORD 3
|
||||
x1 WORD 4
|
||||
x0 WORD 5
|
||||
|
||||
.tocka
|
||||
x WORD 2
|
||||
|
||||
.rezultat
|
||||
rez RESW 1
|
||||
Loading…
Add table
Add a link
Reference in a new issue