Difference between revisions of "CSC270 Class Page 2009"

From dftwiki3
Jump to: navigation, search
(Integrated Circuit Data-Sheets)
(Motorola 68HC11)
Line 244: Line 244:
 
* [http://www.eecs.ucf.edu/undergrad/CpE/labs/EEL4767 Good source of info] on the 6811.
 
* [http://www.eecs.ucf.edu/undergrad/CpE/labs/EEL4767 Good source of info] on the 6811.
 
* [http://www.faqs.org/faqs/microcontroller-faq/68hc11/ 6811 FAQs].
 
* [http://www.faqs.org/faqs/microcontroller-faq/68hc11/ 6811 FAQs].
* The official Motorola [http://cs.smith.edu/~thiebaut/classes/270/6811/68hc11a8.pdf | 68HC11A8 Data Sheet].  Fairly
+
* The official Motorola [http://cs.smith.edu/~thiebaut/classes/270/6811/68hc11a8.pdf | 68HC11A8 Data Sheet].  Fairly cryptic...
cryptic...
 
 
*  A Motorola  [http://www.handyboard.com/techdocs/6811intr.pdf  6811 Manual].  It is a nicely written refresher on many concepts of assembly language applied to the 6811.
 
*  A Motorola  [http://www.handyboard.com/techdocs/6811intr.pdf  6811 Manual].  It is a nicely written refresher on many concepts of assembly language applied to the 6811.
 
**  Check Section 3.2 on addressing modes (inherent, direct, extended, indexed, relative).
 
**  Check Section 3.2 on addressing modes (inherent, direct, extended, indexed, relative).
 
** Get a refresher for the different instruction types (arithmetic, shifts, control, etc) in Section 3.4.   
 
** Get a refresher for the different instruction types (arithmetic, shifts, control, etc) in Section 3.4.   
 
** The condition code register is covered in Section 3.5.
 
** The condition code register is covered in Section 3.5.
 
 
* [http://cs.smith.edu/~thiebaut/classes/270/6811/68hc11ref-2002.pdf  M68HC11 Technical Reference, Motorola]
 
* [http://cs.smith.edu/~thiebaut/classes/270/6811/68hc11ref-2002.pdf  M68HC11 Technical Reference, Motorola]
 
** Section 6.5 shows the instructions in logical groups.
 
** Section 6.5 shows the instructions in logical groups.

Revision as of 10:56, 22 January 2009

Back to Main Page for CSC270


Prof

Dominique Thiébaut email
Dept. Computer Science
McConnell Hall, 208.
Telephone: 3854
Office hours MW 10:30-12:00, W 1-3, and by appointments

Weekly Schedule

Week Topics Reading
Week 1
1/26
  • TBA

 

Week 2
2/2
  •  

  •  
  •  
Week 3
2/9
  •  

  •  
  •  


Week 4
2/16
  •  

  •  
  •  
Week 5
2/23
  •  

  •  
  •  


Week 6
3/2
  •  

  •  
  •  
Week 7
3/9
  •  

  •  
  •  


Week 8
3/16

SPRING BREAK

 

Week 9
3/23
  •  

  •  
  •  


Week 10
3/30
  •  

  •  
  •  
Week 11
4/6
  •  

  •  
  •  


Week 12
4/13
  •  

  •  
  •  
Week 13
4/20
  •  

  •  
  •  
Week 14
4/27
  •  

  •  
  •  



Back To Main Page


Links and Resources

  • Pspice 9, Student version. An nice alternative to drawing schematics

by hand. Download.

Integrated Circuit Data-Sheets

Ic.gif

74LS01, 74LS02, 74LS03, 74LS04, 74LS05, 74LS08, 74LS09, 74LS10, 74LS12, 74LS13, 74LS15, 74LS20, 74LS21, 74LS22, 74LS26, 74LS27, 74LS28, 74LS30, 74LS32, 74LS33, 74LS37, 74LS38, 74LS40, 74LS42, 74LS47, 74LS48, 74LS51, 74LS54, 74LS55, 74LS74, 74LS75, 74LS76, 74LS83, 74LS85, 74LS86, 74LS90, 74LS95, 74LS138, 74HCT240, 74LS243, 74HCT244, 74LS259, 74HCT541

Motorola 68HC11

engineering description. of the 6811, its ports, and how it operates.

    • See Section 10 for a cycle-by-cycle description of the execution of each instruction.
    • See Appendix A, Figure A-14 for the timing diagram of a typical (multiplexed expansion) memory access.

Back To Main Page