Is 1011 negative?
Yes.
What is 0110 in decimal?
6
What is 5 in binary?
0101
What is 3 in binary?
0011
What is the output of !a
The output is the opposite of a.
What does Not(in=a,out=b) do?
It sets b to the opposite of a.
What is the decimal value of 1001
-7
What is 14 in Octal?
16
What is the output of !ab
The output is the opposite of a anded with b.
What does the following HDL do?
And(a=a,b=b,out=c);
It sets c to the value of a and b.
What does the a instruction do?
The a instruction loads a value into the a register.
What is -2 in Binary
1101
What is 55 octal in decimal?
45
What is x + y if x is 1 and y is 0?
1
How do you write !a + bc in hdl
And(a=b,b=c,out=x);
Or(a=nota,b=x,out=out);What does the c instruction do
What is 1101 + 0101 in binary?
10010
What is AB in decimal
Simplify !a + a + bc.
bc
How do you write ab+cd in HDL
And(a=a,b=b,out=x);
And(a=c,b=d,out=y);
or(a=x,b=y,out=out);
What does 0; JMP do?
0; JMP causes the computer to jump the line number held in the a register.