Instruction Type | Opcode (6 bits) | Data (26 bits) |
---|---|---|
R-Type | xxxxxx | rs (5), rt (5), rd (5), shift (5), function (6) |
I-Type | xxxxxx | rs (5), rt (5), immediate (16) |
J-Type | xxxxxx | 26-bit address |
LET x = x + 1
LET y = x * 2
GO TO
staetmentsON ERROR GOTO...
arr = np.array([0, 1, 2, 3, 4, 5])
evens = np.where(arr % 2 > 0, arr*2, arr)
prereq(cs173, cs174).
prereq(cs174, cs374).
?- prereq(cs173, cs174).
Yes
(define square
(lambda(n)
(* n n)))
(square 5)
=
to :=
2 squared