Given the following addinator macro...
macro addinator( w, x, y, z)
load 1, w
load 2, x
load 4, y
add 1, 2, 3
add 3, 4, 5
store 5, z
endmacro
... show the results from an expansion of the macro on
the following assembly language code:
kairi: .long 1
sora: .long 1
riku: .long 1
heart: .long
addinator(kairi, sora, riku, heart)
Given the following addinator macro... macro addinator( w, x, y, z) load 1, w load 2, x load 4, y ad
-
answerhappygod
- Site Admin
- Posts: 899604
- Joined: Mon Aug 02, 2021 8:13 am
Given the following addinator macro... macro addinator( w, x, y, z) load 1, w load 2, x load 4, y ad
Join a community of subject matter experts. Register for FREE to view solutions, replies, and use search function. Request answer by replying!