Difference between revisions of "CSC231 Schedule 2012"

From dftwiki3
Jump to: navigation, search
(Weekly Schedule)
(Weekly Schedule)
Line 153: Line 153:
 
** Review of 2's Complement: [[CSC231 Mystery C Program with signed numbers | Exercise]] in need of a solution...
 
** Review of 2's Complement: [[CSC231 Mystery C Program with signed numbers | Exercise]] in need of a solution...
 
** Extending the sign from byte to word, or word to double-word.
 
** Extending the sign from byte to word, or word to double-word.
*** CBW: The CBW (convert byte to word) instruction copies the sign (bit 7) in the source operand (AL) into every bit in the AH register.<ref name="IntelInstructions">Intel Instruction Set Summary, from http://download.intel.com/design/processor/manuals/253666.pdf</ref>
+
*** '''CBW''': ''The CBW (convert byte to word) instruction copies the sign (bit 7) in the source operand (AL) into every bit in the AH register.''<ref name="IntelInstructions">Intel Instruction Set Summary, from http://download.intel.com/design/processor/manuals/253666.pdf</ref>
*** CWDE: The CWDE instruction copies the sign (bit 15) of the word in the AX register into every bit position of the high word of the EAX register<ref name="IntelInstructions" />.
+
*** '''CWDE''': ''The CWDE instruction copies the sign (bit 15) of the word in the AX register into every bit position of the high word of the EAX register''<ref name="IntelInstructions" />.
 
** Masking with AND, OR, and NOT.
 
** Masking with AND, OR, and NOT.
 
----
 
----

Revision as of 14:48, 4 October 2012

--D. Thiebaut 11:15, 24 August 2012 (EDT)


Misc. Links & Information

Weekly Schedule

Week Topics Reading
Week 1
9/7



Week 2
9/10

  • Reading
Week 3
9/17

JacquardLoom.jpgJacquardLoom2.jpg

    • Get the list of all the assembly programs seen in class:
ls -ltr ~231a/handout
    • Get one of the files into your 231a-xx account:
getcopy movStrings1.asm
    • Or use sftp
sftp 231a-xx@beowulf.csc.smith.edu (and then use put filename or get filename to transfer files)

Week 4
9/24

  • Reading
    • Sections 2.2, 2.2.1, 2.2.2, 2.2.3, and 2.2.4 in the Nasm Manual
    • Sections 3.1 to 3.2.1 in the Nasm Manual
    • The INC instruction.
Week 5
10/1
  • Monday
    • Review of two-bit Adder




  • Wednesday
  • Friday
    • Review of 2's Complement: Exercise in need of a solution...
    • Extending the sign from byte to word, or word to double-word.
      • CBW: The CBW (convert byte to word) instruction copies the sign (bit 7) in the source operand (AL) into every bit in the AH register.[1]
      • CWDE: The CWDE instruction copies the sign (bit 15) of the word in the AX register into every bit position of the high word of the EAX register[1].
    • Masking with AND, OR, and NOT.

Week 6
10/8
  • Monday: Fall Break
  • Wednesday
  • Friday

  • Reading
Week 7
10/15
  • Monday
  • Wednesday
  • Friday Midterm Exam, in class, closed books

  • Reading
Week 8
10/22
  • Monday
  • Wednesday
  • Friday

  • Reading
Week 9
10/29
  • Monday
  • Wednesday
  • Friday

  • Reading
Week 10
11/05
  • Monday
  • Wednesday
  • Friday

  • Reading
Week 11
11/12
  • Monday
  • Wednesday
  • Friday

  • Reading
Week 12
11/19
  • Monday
  • Wednesday Thanksgiving Break
  • Friday Thanksgiving Break

  • Reading
Week 13
11/26
  • Monday
  • Wednesday
  • Friday

  • Reading
Week 14
12/03
  • Monday
  • Wednesday
  • Friday

  • Reading
Week 15
12/10
  • Monday
  • Wednesday Last Class
    • Final Exam, open books & computers

  • Reading



References