Tagged Questions
Y86 is an academic simplification of the 80x86 CPU architecture. The language and architecture are often used for teaching CPU instruction encoding and decoding.
3
votes
2answers
979 views
Confused about memory locations of this Y86 assembly code
We had a piece of code in C in one class where we needed to convert it to Y86 and this was written on the board by some guy with the teacher's correction of course.
However, I'm confusing the memory ...
2
votes
1answer
5k views
Assembly: Y86 Stack and call, pushl/popl and ret instructions
Unless I copied it wrong, the code above was written in the blackboard in a class by a student with the help/corrections of the teacher:
int array[100], sum, i;
void ini() {
for(i = 0; i < 100; ...
1
vote
0answers
44 views
Not getting output in first Y86 program
I'm trying to learn Y86, so I made a very simple program. It has an array of three long integers, and each block is filled by asking the user for an input through rdint.
The compiled(?) program asks ...
1
vote
1answer
874 views
Do I understand the stack properly in this Y86 Assembly code?
I've created this simple and pointless assembly (Y86) code to see if I understand everything that's happening in the stack when the instructions call, pushl, popl and ret are used.
Like I said, this ...
0
votes
2answers
301 views
Y86 code doesn't handle ret instruction as expected
The following is a homework problem for an assembly language class. We're to create Y86 code by reading X86 code generated from C in gdb. The purpose of the function is to sum the elements of a ...
0
votes
0answers
496 views
y86 assembly language mutiplication
I'm supposed to write code in y86 assembly language that multiplies two numbers using the stack to pass parameters. I want to have a main that passes the two parameters and calls a subroutine that ...
-1
votes
3answers
60 views
counting positive items in an array without using any conditional jump
How can I do this ?
I think I should do something like calculating checksum but this should give number of positive integers in final bits.
edit: what if we can't use 'shift', either
edit2: ISA is ...