EP1200 Hack Assembly / Machine Language

0.0(0)
studied byStudied by 0 people
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/5

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

6 Terms

1
New cards

Machine Language, Assembly, Assembler

Assembly is a symbolic representation of machine language instructions, which is in binary representation. The assembler translates assembly into machine language.

2
New cards

Is this command valid? D=!D;JEQ

Yes

3
New cards

A, D, PC registers. and “M”.

A-register stores a 16-bit value, typically used as a memory address or constant.

D-register stores a 16-bit value.
PC-register stores (15-bit) the address of the next instruction in ROM.

M refers to RAM[A].

4
New cards

RAM, ROM, Registers, ALU, PC

RAM = data memory

ROM = instructions memory (given, can’t be changed / read-only)

Registers = PC, A,D (M refers to register whose address is stored in A-register)

ALU = processing various functions

5
New cards

stored program concept

 

The program is stored in the memory like the data, and can be manipulated.

6
New cards

CPU?

includes the ALU, registers, and a logic to decode instructions.