Lectures: | ![]() | Leonard McMillan (SN-311) Office Hours Mon 2-4 |
TA: | ![]() | TBD Office Hours TBD |
Book: | None this semester. | We'll use only my notes. |
Best 5 of 6 problem sets | 25% |
Best 9 of 10 problem sets | 20% |
2 in-class exams | 30% |
Final exam | 25% |
You will have at least two weeks to complete each problem set. Problem sets will be online. Late problem sets will not be accepted, but the lowest problem-set score will be dropped.
Friday Labs are mandatory, and will meet on most Fridays, grade is based on completing a "lab check list."
I will attempt to make Lecture Notes, Problem Sets, and other course materials available on the web before class on the day they are given.
I do not fear computers. I fear the lack of them.
- Isaac Asimov (1920-1992)
Fear is the main source of superstition, and one of the main sources of cruelty. To conquer fear is the beginning of wisdom.
- Bertrand Russell (1872-1970)
By now you should be able to look at a program specification and figure out what it does. What does this one do? How would you approach this problem? Try f(36), f(64), f(100) |
|
What does a computer do with this program specification? It translates it into a series of simple instructions.
|
Memory
|
int memory[16384]; // for instuctions and data
int register[32]; // for variables
int pc; // next instruction to execute
int flags;
void main(void) {
pc = 0;
while (1) {
instruction = memory[pc];
pc = pc + 1;
flags = execute(instruction);
}
}
A computer is an interpreter that executes a simple program loop.