Question: 4 . Write a Pep / 9 Assembly Language subroutine that is EXACTLY the same as the following C function: 1 0 1 0 points

4. Write a Pep/9 Assembly Language subroutine that is EXACTLY the same as the following C function: 1010 points */
```
vold prinemin( int a, int b ){
if ( a> b ){
printf("%d", b);
}
else {
printf("\d", a);
}
J// end of printmin
```
Use the following . EQUATE pscudo-ops for the parameters in your subroutine, which will already be on the run-time stack, having been placed there by the caller:
a:
. EQUATE 4
b:
- equate 2
4 . Write a Pep / 9 Assembly Language subroutine

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!