Tom Kelliher, CS 116
Sept. 1, 2000
There is a section 2, at 2:00, with fewer students.
Read 1.1--4.
What last time?
Overview of Java.
Compilation process example:
a = b + c;may become:
lw $2, b lw $3, c add $2, $2, $3 sw $2, awhich is translated to 32-bit numbers.
Recurring concepts: abstraction, binding.