The process of removing or adding digits to a binary number, denoted with either << or >>.
What is Bit Shifting?
The full name for CPU.
What is Central Processing Unit?
The full name for the memory the computer uses for shot-term access that is not contained in the CPU.
What is Random Access Memory?
The two most common types of instruction set sizes in the modern day.
What are 32-bit and 64-bit architecture?
A series of operations that are used between pairs of binary numbers in order to create a new binary number as a result. Denoted with symbols such as &, |, ~.
What are Bitwise Operators?
Small areas of memory held in the CPU for incredibly fast access.
What are Registers?
A contiguous set of bits that allows for interim storage of pieces of data.
What is RAM?
A binary string that encodes a series of information for the CPU to process.
What is a computer Instruction?
The decimal number represented by 0b00101100.
What is 44?
The component of a CPU that deals with the math processes, including the Duck-Machine CPU.
What is the ALU(Arithmetic Logic Unit)?
The two Duck Machine instructions that memory processes.
What are get() and put()?
In the Duck Machine, this part of an instruction allows for a small integer number to be added to one of the registers of an operation.
What is the Offset?
The result of the following operation:
((0x3A & 5) | 0b0111) >> 2
What is 1 / 0x1 / 0b0001?
The [blank] follows the fetch-decode-execute in order to process instructions.
What is the CPU?
The form that the Duck Machine memory takes for storing all of the data that will be pushed to it.
What is the Array of Ints?
The portion of an instruction that determines what process will be done when the instruction is passed to the CPU.
What is the Op Code(Operation Code)?
A string with the left-most bit specially reserved for negative representations.
What is a Signed String?
A register that determines where in the sequence of processes the CPU is at currently.
What is the Program Counter(PC)?
An instruction that may have several copies that references a location in memory.
What is a Pointer(Aliasing)?
The four bits that independently indicate the results of opperations as part of the Duck Machine instructions.
What are the Condition Flags?