Input and Output Ports. How do you get data into a computer from the outside?

Size: px
Start display at page:

Download "Input and Output Ports. How do you get data into a computer from the outside?"

Transcription

1 Input and Output Ports How do you get data into a computer from the outside? SIMPLIFIED INPUT PORT D 7 Any read from address $0000 gets signals from outside H C 2 D a t a D D D4 D3 S i g n a l s F r o m LDAA $00 Puts data from outside into accumulator A. Data from outside looks like a memory location OUT IN L i n e s D2 D O u t s i d e A Tri State Buffer acts like a switch OUT TRI If TRI is active, the switch is closed OUT will be the same as IN IN D0 If TRI is not active, the switch is open OUT will not be driven by IN Some other device can drive OUT Read from 0x0000 OUT IN

2 How do you get data out of computer to the outside? SIMPLIFIED OUTPUT PORT H C 2 D a t a L i n e s D 7 D D D4 D3 D2 D D Q D Q D Q D Q D Q D Q D Q S i g n a l s T o O u t s i d e Any write to address $0 latches data into flip flops, so data goes to external pins MOVB #$AA,$0 puts $AA on the external pins When a port is configured as output and you read from that port, the data you read is the data which was written to that port: MOVB #$AA,$0 LDAA $0 Accumulator A will have $AA after this D 0 D Q Write to 0x000 2

3 Figure - MC9S2DP2B Block Diagram MC9S2DP2B Device User Guide V02.3 VDDR VSSR VREGEN VDD,2 VSS,2 BKGD XFC VDDPLL VSSPLL EXTAL XTAL RESET PE0 PE PE2 PE3 PE4 PE PE PE7 TEST Multiplexed Wide Bus Multiplexed Narrow Bus Internal Logic 2.V VDD,2 VSS,2 PLL 2.V VDDPLL VSSPLL 2K Byte Flash EEPROM 2K Byte RAM 4K Byte EEPROM Single-wire Background Debug Module PTE PLL DDRE PA7 PA PA ADDR ADDR4 ADDR3 DATA DATA4 DATA3 DATA7 DATA DATA XIRQ IRQ R/W LSTRB ECLK MODA MODB NOACC/XCLKS CPU2 Periodic Interrupt COP Watchdog Clock Monitor Breakpoints System Integration Module (SIM) Multiplexed Address/Data Bus DDRA PTA Voltage Regulator Clock and Reset Generation Module PA4 PA3 PA2 PA PA0 ADDR2 ADDR ADDR0 ADDR9 ADDR8 DATA2 DATA DATA0 DATA9 DATA8 DATA4 DATA3 DATA2 DATA DATA0 VDDX VSSX PB7 PB PB ADDR7 ADDR ADDR DATA7 DATA DATA I/O Driver V VDDA VSSA DDRB PTB PB4 PB3 PB2 PB PB0 ADDR4 ADDR3 ADDR2 ADDR ADDR0 DATA4 DATA3 DATA2 DATA DATA0 A/D Converter V & Voltage Regulator Reference Voltage Regulator V & I/O VDDR VSSR ATD0 AN0 AN AN2 AN3 AN4 AN AN AN7 Enhanced Capture Timer SCI0 SCI SPI0 IIC VRH VRL VDDA VSSA AD0 PPAGE MISO MOSI SCK SS BDLC RXB (J80) TXB CAN0 RXCAN TXCAN CAN RXCAN TXCAN CAN2 RXCAN TXCAN CAN3 RXCAN TXCAN CAN4 RXCAN TXCAN SDA SCL PWM0 PWM PWM2 PWM3 PWM PWM4 PWM PWM PWM7 SPI SPI2 MISO MOSI SCK SS MISO MOSI SCK SS PAD00 PAD0 PAD02 PAD03 PAD04 PAD0 PAD0 PAD07 ATD PIX0 PIX PIX2 PIX3 PIX4 PIX ECS IOC0 IOC IOC2 IOC3 IOC4 IOC IOC IOC7 RXD TXD RXD TXD Module to Port Routing KWJ0 KWJ KWJ KWJ7 KWP0 KWP KWP2 KWP3 KWP4 KWP KWP KWP7 KWH0 KWH KWH2 KWH3 KWH4 KWH KWH KWH7 AN0 AN AN2 AN3 AN4 AN AN AN7 VRH VRL VDDA VSSA DDRK DDRT DDRS DDRM DDRJ DDRP DDRH AD PTK PTT PTS PTM PTJ PTP PTH VRH VRL VDDA VSSA PAD08 PAD09 PAD0 PAD PAD2 PAD3 PAD4 PAD PK0 PK PK2 PK3 PK4 PK PK7 PT0 PT PT2 PT3 PT4 PT PT PT7 PS0 PS PS2 PS3 PS4 PS PS PS7 PM0 PM PM2 PM3 PM4 PM PM PM7 PJ0 PJ PJ PJ7 PP0 PP PP2 PP3 PP4 PP PP PP7 PH0 PH PH2 PH3 PH4 PH PH PH7 XADDR4 XADDR XADDR XADDR7 XADDR8 XADDR9 ECS Signals shown in Bold are not available on the 80 Pin Package 2 3

4 Ports on the HC2 How do you get data out of computer to the outside? A Port on the HC2 is device the HC2 uses to control some hardware. Many of the HC2 ports are used to communicate with hardware outside of the HC2. The HC2 ports are accessed by the HC2 by reading and writing memory locations $0000 to $03FF. Some of the ports we will use in this course are PORTA, PORTB and PTH PORTA is accessed by reading and writing address $0000. PORTB is accessed by reading and writing address $000. PTH is accessed by reading and writing address $020. You can connect signals from the outside by connecting wires to pins 39 to 4 (PORTA), 8 to 2 (PORTB), and to pins 32 to 3 and 49 to 2 (PTH). On the MiniDRAGON+ EVB, a seven-segment LED is connected to PTH. When you power up or reset the HC2, PORTA, PORTB and PTH are input ports. You can make any or all bits of PORTA, PORTB and PTH outputs by writing a to the corresponding bits of their Data Direction Registers. The Data Dirction Register for PORTA is located at memory addres $0002. It is called DDRA. To make all bits of PORTA output, write a $FF to DDRA. To make the lower four bits of PORTA output and the upper four bits of PORTA input, write a $0F to DDRA. The Data Dirction Register for PORTB is located at memory addres $0003. It is called DDRB. To make all bits of PORTB output, write a $FF to DDRB. The Data Dirction Register for PTH is located at memory addres $022. It is called DDRH. To make all bits of PTH output, write a $FF to DDRH. 4

5 You can use DBug-2 to easily manipulate the IO ports on the 8HCS2 To make PTH an output, use MM to change the contents of address $022 (DDRH) to an $FF. You can now use MM to change contents of address $020 (PTH), which changes the logic levels on the PTH pins. If the data direction register makes the port an input, you can use MD to display the values on the external pins.

6 Using Port A of the 8HC2 To make a bit of Port A an output port, write a to the corresponding bit of DDRA (address 0x0002). To make a bit of Port A an input port, write a 0 to the corresponding bit of DDRA. On reset, DDRA is set to $00, so Port A is an input port. DDA7 DDA DDA DDA4 DDA3 DDA2 DDA DDA0 $0002 RESET For example, to make bits 3 0 of Port A input, and bits 7 4 output, write a 0xf0 to DDRA. To send data to the output pins, write to PORTA (address 0x0000). When you read from PORTA input pins will return the value of the signals on them (0 => 0V, => V); output pins will return the value written to them. PA7 PA PA PA4 DP3 PA2 PA PA0 $0000 RESET Port B works the same, except DDRB is at address 0x0003 and PORTB is at address 0x000.

7 ;A simple program to make PORTA output and PORTB input, ;then read the signals on PORTB and write these values ;out to PORTA prog: equ $000 PORTA: equ $00 PORTB: equ $0 DDRA: equ $02 DDRB: equ $03 org prog movb #$ff,ddra ; Make PORTA output movb #$00,DDRB ; Make PORTB input ldaa staa swi PORTB PORTA Because DDRA and DDRB are in consecutive address locations, you could make PORTA and output and PORTB and input in one instruction: movw #$ff00,ddra ; FF -> DDRA, 00 -> DDRB 7

8 GOOD PROGRAMMING STYLE. Make programs easy to read and understand. Use comments Do not use tricks 2. Make programs easy to modify Top-down design Structured programming no spaghetti code Self contained subroutines 3. Keep programs short BUT do not sacrifice items and 2 to do so TIPS FOR WRITING PROGRAMS. Think about how data will be stored in memory. Draw a picture 2. Think about how to process data Draw a flowchart 3. Start with big picture. Break into smaller parts until reduced to individual instructions Top-down design 4. Use names instead of numbers 8

9 Another Example of an Assembly Language Program Add the odd numbers in an array of data. The numbers are 8-bit unsigned numbers. The address of the first number is $E000 and the address of the final number is $E0F. Save the result in a variable called answer at address $2000. Start by drawing a picture of the data structure in memory: SUM ODD NUMBERS IN ARRAY FROM 0xE000 TO 0xE0f Treat numbers as 8 bit unsigned numbers 4 8 0xE000 0xE0F 9

10 Start with the big picture SUM ODD 8 BIT NUMBERS IN ARRAY FROM 0xE000 TO 0xE0f START 4 8 0xE000 Save Answer 0xE0F 0

11 Add details to blocks SUM ODD 8 BIT NUMBERS IN ARRAY FROM 0xE000 TO 0xE0f START Addr > Pointer 4 8 0xE000 0 > Sum Save Answer 0xE0F

12 Decide on how to use CPU registers for processing data SUM ODD 8 BIT NUMBERS IN ARRAY FROM 0xE000 TO 0xE0f START Addr > Pointer 4 8 0xE000 0 > Sum Save Answer 0xE0F Pointer: X or Y use X Sum: bit register D or Y No way to add 8 bit number to D Can use ABY to add 8 bit number to Y 2

13 Add more details: Expand another block SUM ODD 8 BIT NUMBERS IN ARRAY FROM 0xE000 TO 0xE0f START X > 4 0xE000 Addr > Pointer Get Num loop: 8 0 > Sum Yes Even? Save Answer Add Num to Sum No even: Inc Pointer 0xE0F Yes More to do? No 3

14 More details: How to tell if number is odd, how to tell when done SUM ODD 8 BIT NUMBERS IN ARRAY FROM 0xE000 TO 0xE0f START Addr > Pointer Get Num loop: X > 4 8 0xE000 0 > Sum Yes Even? Save Answer No Add Num to Sum even: How to test if even? LSB = 0 check LSB of memory Inc Pointer 0xE0F BRCLR 0,X,$0,even Yes More to do? How to check if more to do? If X < 0xE020, more to do. CMPX #$E020 BL0 or BLT loop? No Address in unsigned, use unsigned compare BLO loop 4

15 Convert blocks to assembly code SUM ODD 8 BIT NUMBERS IN ARRAY FROM 0xE000 TO 0xE0f START loop: Addr > Pointer LDX #ARRAY Get Num LDAB 0,X 0 > Sum LDY #0 Yes Even? BRCLR 0,X,$0,even Save Answer No Add Num to Sum ABY even: How to test if even? LSB = 0 check LSB of memory Inc Pointer INX BRCLR 0,X,$0,even Yes More to do? CMPX #ARRAY_END BLO loop How to check if more to do? If X < 0xE020, more to do. No BLO loop X > 4 8 0xE000 ARRAY 0xE0F ARRAY_END

16 Write program ;Program to sum odd numbers in a memory array prog: equ $000 data: equ $2000 array: equ $E000 len: equ $20 org prog ldx #array ; initialize pointer ldy #0 ; initialize sum to 0 loop: ldab 0,x ; get number brclr 0,x,$0,skip ; skip if even aby ; odd - add to sum skip: inx ; point to next entry cpx #(array+len) ; more to process? blo loop ; if so, process sty answer ; done -- save answer swi org data answer: ds.w ; reserve -bit word for answer Important: Comment program so it is easy to understand.

17 The assembler output for the above program Note that the assembler output shows the op codes which the assembler generates for the HC2. For example, the op code for brclr 0,x,$0,skip is 0f prog: equ $ data: equ $2000 e000 array: equ $E len: equ $ org prog 000 ce e0 00 ldx #array ; initialize pointer 003 cd ldy #0 ; initialize sum to 0 00 e 00 loop: ldab 0,x ; get number 008 0f brclr 0,x,$0,skip ; skip if even 00c 9 ed aby ; odd - add to sum 00e 08 skip: inx ; point to next entry 00f 8e e0 20 cpx #(array+len) ; more to process? 02 2 f2 blo loop ; if so, process 04 7d sty answer ; done -- save answer 07 3f swi 2000 org data 2000 answer: ds.w ; reserve -bit word for answer And here is the.s9 file: S C3A E73D0ADA S3000CEE000CD0000E000F000029ED088ECD S0B00E0202F27D20003FE S FC 7

CEG 411/611 Laboratory 1. Laboratory Familiarization

CEG 411/611 Laboratory 1. Laboratory Familiarization CEG 411/611 Laboratory 1 PURPOSE Laboratory Familiarization The purpose of this lab is to introduce you to the equipment and procedures used in the CEG 411/611 Laboratory. This is a one-week project. The

More information

Freescale Semiconductor, Inc.

Freescale Semiconductor, Inc. nc. MOTOROLA SEMICONDUCTOR TECHNICAL DATA Product Preview 16-Bit Microcontroller MC9S12K-Family Rev 6.0, 21-Oct-03 MC9S12K-Family Targeted for ultra high reliability systems, members of the MC9S12K-Family

More information

Freescale Semiconductor, I

Freescale Semiconductor, I nc. Product Proposal Rev. 0.7, 8/2003 HCS12DB Family Product Proposal Introduction Designed for automotive multiplexing applications, members of the MC9S12DB-Family of 16 bit Flash-based microcontrollers

More information

MC9S12A256 Device Guide V01.01

MC9S12A256 Device Guide V01.01 9S12A256DGV1/D 4/2002 MC9S12A256 Device Guide V01.01 Original Release Date: 8 March 2002 Revised: 12 April 2002 Motorola, Inc Motorola reserves the right to make changes without further notice to any products

More information

Freescale Semiconductor, Inc.

Freescale Semiconductor, Inc. nc. SEMICONDUCTOR TECHNICAL DATA Product Proposal 16-Bit Microcontroller PP Rev. 3, 12-May-04 Based on Motorola s market-leading flash technology, members of the deliver the power and flexibility of our

More information

Designing Hardware for the HCS12 D-Family

Designing Hardware for the HCS12 D-Family Freescale Semiconductor Application Note AN2727 Rev. 0, 12/2004 Designing Hardware for the HCS12 D-Family by: Martyn Gallop Applications Engineering Freescale Semiconductor, East Kilbride Introduction

More information

M68HC12. Microcontrollers MC68HC912DT128A MC68HC912DG128A MC68HC912DT128C MC68HC912DG128C MC68HC912DT128P MC68HC912DG128P.

M68HC12. Microcontrollers MC68HC912DT128A MC68HC912DG128A MC68HC912DT128C MC68HC912DG128C MC68HC912DT128P MC68HC912DG128P. MC68HC912DT128A MC68HC912DG128A MC68HC912DT128C MC68HC912DG128C MC68HC912DT128P MC68HC912DG128P Technical Data M68HC12 Microcontrollers MC912DT128A/D Rev. 4, 10/2003 MOTOROLA.COM/SEMICONDUCTORS MC68HC912DT128A

More information

Using the stack and the stack pointer

Using the stack and the stack pointer Using the stack and the stack pointer o The Stack and Stack Pointer o The stack is a memory area for temporary storage o The stack pointer points to the last byte in the stack o Some instructions which

More information

The 9S12 in Expanded Mode - How to get into expanded mode Huang Chapter 14

The 9S12 in Expanded Mode - How to get into expanded mode Huang Chapter 14 The 9S2 in Expanded Mode - How to get into expanded mode Huang Chapter 4 DATA/ADDR (6) HCS2 _ R/W E LSTRB DEMUX ADDR(6) CE _ WE CS _ UB _ LB DATA ADDR CE - Output Enable (Read) _ WE Write Enable CS Chip

More information

MC68HC12 Parallel I/O

MC68HC12 Parallel I/O EEL 4744C: Microprocessor Applications Lecture 6 Part 2 MC68HC12 Parallel I/O Dr. Tao Li 1 Software and Hardware Engineering (new version): Chapter 11 Or SHE (old version): Chapter 7 And Reading Assignment

More information

M68HC12. Microcontrollers MC68HC912DG128. Technical Data. Freescale Semiconductor, I MOTOROLA.COM/SEMICONDUCTORS

M68HC12. Microcontrollers MC68HC912DG128. Technical Data. Freescale Semiconductor, I MOTOROLA.COM/SEMICONDUCTORS nc. M68HC12 Microcontrollers MC68HC912DG128 Technical Data MC68HC912DG128/D Rev. 3, 10/2002 MOTOROLA.COM/SEMICONDUCTORS nc. nc. MC68HC912DG128 Technical Data Rev 3.0 Motorola reserves the right to make

More information

MC9S12DT128. HCS12 Microcontrollers. freescale.com. 9S12DT128DGV2/D V Jun 2010

MC9S12DT128. HCS12 Microcontrollers. freescale.com. 9S12DT128DGV2/D V Jun 2010 MC9S12DT128 Device User Guide Covers MC9S12DT128E, MC9S12DG128E, MC9S12DJ128E, MC9S12DG128, MC9S12DJ128, MC9S12DB128, MC9S12A128, SC515846, SC515847, SC515848, SC515849, SC101161DT, SC101161DG, SC101161DJ,

More information

CS/ECE 5780/6780: Embedded System Design

CS/ECE 5780/6780: Embedded System Design CS/ECE 5780/6780: Embedded System Design John Regehr Lecture 2: 68HC12 Architecture & Lab 1 Introduction Duff s Device void foo (int x, int *y, int *z) { switch (x % 8) { case 0: do { *y++ = *z++; case

More information

History of the Microprocessor. ECE/CS 5780/6780: Embedded System Design. Microcontrollers. First Microprocessors. MC9S12C32 Block Diagram

History of the Microprocessor. ECE/CS 5780/6780: Embedded System Design. Microcontrollers. First Microprocessors. MC9S12C32 Block Diagram History of the Microprocessor ECE/CS 5780/6780: Embedded System Design Chris J. Myers Lecture 1: 68HC12 In 1968, Bob Noyce and Gordon Moore left Fairchild Semiconductor and formed Integrated Electronics

More information

The 9S12 in Expanded Mode - How to get into expanded mode Huang Chapter 14

The 9S12 in Expanded Mode - How to get into expanded mode Huang Chapter 14 The 9S2 in Expanded Mode - How to get into expanded mode Huang Chapter 4 Getting into expanded mode The HCS2 can operate in several modes: Normal Single-Chip Mode (the way we have been using the HCS2)

More information

Exam 1 Feb. 23, 25, 27?

Exam 1 Feb. 23, 25, 27? Exam 1 Feb. 23, 25, 27? You will be able to use all of the Motorola data manuals on the exam. No calculators will be allowed for the exam. Numbers Decimal to Hex (signed and unsigned) Hex to Decimal (signed

More information

S12XS MCU and Multifunctional Ignition and Injector Driver System In Package (SiP)

S12XS MCU and Multifunctional Ignition and Injector Driver System In Package (SiP) Freescale Semiconductor Advance Information S12XS MCU and Multifunctional Ignition and Injector Driver System In Package (SiP) The MM is an engine control SMARTMOS IC combining an MCU (S12XS) and analog

More information

MC9S12T64 CPU Module Jumpers

MC9S12T64 CPU Module Jumpers Version 2.2 March 26, 2003 The following is a photo of the MC9S12T64 CPU module which depicts the jumper configurations. The default setting is for all the voltages, chip power supplies and ground being

More information

Also covers MC9S12XHZ384 and MC9S12XHZ bit S12X Microcontroller with LCD and Stepper Motor Drivers

Also covers MC9S12XHZ384 and MC9S12XHZ bit S12X Microcontroller with LCD and Stepper Motor Drivers Freescale Semiconductor Product Brief S12XHZ512PB Rev. 4.1, 4-Jan-2007 MC9S12XHZ512 Also covers MC9S12XHZ384 and MC9S12XHZ256 16-bit S12X Microcontroller with LCD and Stepper Motor Drivers Introduction

More information

Introduction to Programming the 9S12 in C Huang Sections 5.2 and 5.3. You will be able to use all of the Motorola data manuals on the exam.

Introduction to Programming the 9S12 in C Huang Sections 5.2 and 5.3. You will be able to use all of the Motorola data manuals on the exam. Introduction to Programming the 9S12 in C Huang Sections 5.2 and 5.3 o Comparison of C and Assembly programs for the HC12 o How to compile a C program using the GNU-C compiler o Using pointers to access

More information

Lecture 10 I/O and Interrupts

Lecture 10 I/O and Interrupts CPE 390: Microprocessor Systems Spring 2018 Lecture 10 I/O and Interrupts Bryan Ackland Department of Electrical and Computer Engineering Stevens Institute of Technology Hoboken, NJ 07030 Adapted from

More information

ECE 4510/5530 Microcontroller Applications Chapter 7

ECE 4510/5530 Microcontroller Applications Chapter 7 ECE 450/5530 Microcontroller Applications Chapter 7 Dr. Bradley J. Bazuin Associate Professor Department of Electrical and Computer Engineering College of Engineering and Applied Sciences Chapter 7: Parallel

More information

EE319 K Lecture 3. Introduction to the 9S12 Lab 1 Discussion Using the TExaS simulator. University of Texas ECE

EE319 K Lecture 3. Introduction to the 9S12 Lab 1 Discussion Using the TExaS simulator. University of Texas ECE EE319 K Lecture 3 Introduction to the 9S12 Lab 1 Discussion Using the TExaS simulator University of Texas ECE Introduction (von Neumann architecture) processor Bus Memory Mapped I/O System Input Devices

More information

Introduction to Microcontroller. Systems. Embedded system. Assembler or C? Datatypes 2. Datatypes 1

Introduction to Microcontroller. Systems. Embedded system. Assembler or C? Datatypes 2. Datatypes 1 Introduction to Microcontroller Sven Knutsson 031-772 57 27 svenk@chl.chalmers.se www.chl.chalmers.se/~svenk/it_university 1 2 Embedded system Assembler or C? Real time Size Price Power consumption User

More information

MC9S12DJ64 Device User Guide V Covers also MC9S12D64, MC9S12A64, MC9S12D32, MC9S12A32

MC9S12DJ64 Device User Guide V Covers also MC9S12D64, MC9S12A64, MC9S12D32, MC9S12A32 DOCUMENT NUMBER 9S12DJ64DGV1/D MC9S12DJ64 Device User Guide V01.20 Covers also MC9S12D64, MC9S12A64, MC9S12D32, MC9S12A32 Original Release Date: 19 Nov. 2001 Revised: 6 April 2005 Freescale Semiconductor,

More information

EE 308 Spring 2011 The MC9S12 in Expanded Mode How to get into expanded mode

EE 308 Spring 2011 The MC9S12 in Expanded Mode How to get into expanded mode The MC9S12 in Expanded Mode How to get into expanded mode Huang Chapter 14 Module Mapping Control (MMC) V4 Block User Guide Multiplexed External Bus Interface (MEBI) Module V3 Block User Guide The MC9S12

More information

EE 308 Spring A software delay. To enter a software delay, put in a nested loop, just like in assembly.

EE 308 Spring A software delay. To enter a software delay, put in a nested loop, just like in assembly. More on Programming the 9S12 in C Huang Sections 5.2 through 5.4 Introduction to the MC9S12 Hardware Subsystems Huang Sections 8.2-8.6 ECT_16B8C Block User Guide A summary of MC9S12 hardware subsystems

More information

Review for Exam 3. Write 0x05 to ATD0CTL4 to set at fastest conversion speed and 10-bit conversions

Review for Exam 3. Write 0x05 to ATD0CTL4 to set at fastest conversion speed and 10-bit conversions Review for Exam 3 A/D Converter Power-up A/D converter (ATD0CTL2) Write 0x05 to ATD0CTL4 to set at fastest conversion speed and 10-bit conversions Write 0x85 to ATD0CTL4 to set at fastest conversion speed

More information

Introduction to the MC9S12 Hardware Subsystems

Introduction to the MC9S12 Hardware Subsystems Setting and clearing bits in C Using pointers in C o Program to count the number of negative numbers in an area of memory Introduction to the MC9S12 Hardware Subsystems o The MC9S12 timer subsystem Operators

More information

University of Florida EEL 4744 Fall 1998 Dr. Eric M. Schwartz

University of Florida EEL 4744 Fall 1998 Dr. Eric M. Schwartz Department of Electrical & Computer Engineering 15 October 199 Professor in ECE 31-Dec-9 12:22 PM Page 1/ Instructions: Show all work on the front of the test papers. If you need more room, make a clearly

More information

Introduction to Programming the 9S12 in C Huang Sections 5.2 and 5.3

Introduction to Programming the 9S12 in C Huang Sections 5.2 and 5.3 Introduction to Programming the 9S12 in C Huang Sections 5.2 and 5.3 o Comparison of C and Assembly programs for the HC12 o How to compile a C program using the GNU-C compiler o Using pointers to access

More information

Jonathan W. Valvano EE319K Spring 2010 Lab Manual Page 1 LAB 1. A DIGITAL LOCK...5 LAB 2. SWITCH AND LED INTERFACING...7

Jonathan W. Valvano EE319K Spring 2010 Lab Manual Page 1 LAB 1. A DIGITAL LOCK...5 LAB 2. SWITCH AND LED INTERFACING...7 Jonathan W. Valvano EE319K Spring 2010 Lab Manual Page 1 EE319K Laboratory Manual Univ of Texas at Austin, Valvano, Yerraballi, Erez Do not print the entire document, we will be making small changes. Spring

More information

S12P MCU and Multifunctional Ignition and Injector Driver System In Package (SiP)

S12P MCU and Multifunctional Ignition and Injector Driver System In Package (SiP) Freescale Semiconductor Advance Information Document Number: Rev. 1.0, 05/2012 S12P MCU and Multifunctional Ignition and Injector Driver System In Package (SiP) The MM912xP812 is an engine control IC combining

More information

EE 308 Spring A software delay

EE 308 Spring A software delay A software delay To enter a software delay, put in a nested loop, just like in assembly. Write a function delay(num) which will delay for num milliseconds void delay(unsigned int num) volatile unsigned

More information

Introduction to Microcontrollers II

Introduction to Microcontrollers II Introduction to Microcontrollers II brset, brclr Indexed Addressing Example µp Laboratory #2 BUFFALO Assembling Code EECE 143 Digital Design Project Purpose: To allow students to design their own digital

More information

MC9S12XE Family Product Brief

MC9S12XE Family Product Brief Freescale Semiconductor Product Brief Document Number: MC9S12XEPB Rev. 7, 05/2008 This document contains preview information on a new product that may be in a design phase or under development. Freescale

More information

68HC12 Training Lab Student Exercise Book

68HC12 Training Lab Student Exercise Book 68HC12 Training Lab Student Exercise Book Date: 13 September, 2000 Document Revision:1.01 BiPOM Electronics 16301 Blue Ridge Road, Missouri City, Texas 77489 USA Telephone: (713) 661-4214 Fax: (281) 416-2806

More information

MC9S12 has 16 bit address and 16 bit data buses. Not enough pins on MC9S12 to allocate 35 pins for buses and pins for all other functions

MC9S12 has 16 bit address and 16 bit data buses. Not enough pins on MC9S12 to allocate 35 pins for buses and pins for all other functions The Multiplexed Address/Data Bus ADDR(16) MC9S12 DATA(16) R/W E LSTRB MEMORY MC9S12 has 16 bit address and 16 bit data buses Requires 35 bits Not enough pins on MC9S12 to allocate 35 pins for buses and

More information

Using MSI Logic To Build An Output Port

Using MSI Logic To Build An Output Port Using MSI Logic To Build An Output Port Many designs use standard MSI logic for microprocessor expansion This provides an inexpensive way to expand microprocessors One MSI device often used in such expansions

More information

EE 5340/7340 Motorola 68HC11 Microcontroler Lecture 1. Carlos E. Davila, Electrical Engineering Dept. Southern Methodist University

EE 5340/7340 Motorola 68HC11 Microcontroler Lecture 1. Carlos E. Davila, Electrical Engineering Dept. Southern Methodist University EE 5340/7340 Motorola 68HC11 Microcontroler Lecture 1 Carlos E. Davila, Electrical Engineering Dept. Southern Methodist University What is Assembly Language? Assembly language is a programming language

More information

Programming Microcontroller Assembly and C

Programming Microcontroller Assembly and C Programming Microcontroller Assembly and C Course Number CLO : 2 Week : 5-7 : TTH2D3 CLO#2 Student have the knowledge to create basic programming for microcontroller [C3] Understand how to program in Assembly

More information

What Happens When You Reset the MC9S12?

What Happens When You Reset the MC9S12? What Happens When You Reset the MC9S12? What happens to the MC9S12 when you turn on power or push the reset button? How does the MC9S12 know which instruction to execute first? On reset the MC9S12 loads

More information

Introduction to Microcontrollers II

Introduction to Microcontrollers II Introduction to Microcontrollers II brset, brclr Indexed Addressing Example µp Laboratory #2 BUFFALO Assembling Code EECE 143 Digital Design Project Purpose:To allow students to design their own digital

More information

Chapter 1. Solutions Solution 1.1. Most RAMs are volatile, meaning the information is lost if power is removed then restored.

Chapter 1. Solutions Solution 1.1. Most RAMs are volatile, meaning the information is lost if power is removed then restored. Chapter 1. Solutions Solution 1.1. Most RAMs are volatile, meaning the information is lost if power is removed then restored. Solution 1.2. The bus signals of the MC9S12C32 are AD15-0, R/W, LSTRB and E.

More information

Addition and Subtraction of Hexadecimal Numbers Simple assembly language programming

Addition and Subtraction of Hexadecimal Numbers Simple assembly language programming Addition and Subtraction of Hexadecimal Numbers Simple assembly language programming o A simple Assembly Language Program o Assembling an Assembly Language Program o Simple 9S12 programs o Hex code generated

More information

Total: EEL 3701 Digital Logic & Computer Systems Final Exam Fall Semester 2007 COVER SHEET: Re-Grade Information: 1 (10) 2 (10) 3 (10) 4 (14) 5 (14)

Total: EEL 3701 Digital Logic & Computer Systems Final Exam Fall Semester 2007 COVER SHEET: Re-Grade Information: 1 (10) 2 (10) 3 (10) 4 (14) 5 (14) COVER SHEET: Prob. Points: Re-Grade Information: Total: 1 (10) 2 (10) 3 (10) 4 (14) 5 (14) 6 (15) 7 (15) 8 (12) (100) 1 Remember to show ALL work here and in EVERY problem on this exam. [10%] 1. Circuit

More information

Lab 2 Part 3 Assembly Language Programming and 9S12 Ports

Lab 2 Part 3 Assembly Language Programming and 9S12 Ports Lab 2 Part 3 Assembly Language Programming and 9S12 Ports Introduction and Objectives In this week s lab you will write an assembly language program to display various patterns on the eight individual

More information

Serial Communication Through an Asynchronous FIFO Buffer

Serial Communication Through an Asynchronous FIFO Buffer Serial Communication Through an Asynchronous FIFO Buffer Final Project Report December 9, 2000 E155 Nick Bodnaruk and Andrew Ingram Abstract: For our clinic, we need to be able to use serial communication

More information

HC12 Built-In Hardware

HC12 Built-In Hardware HC12 Built-In Hardware The HC12 has a number of useful pieces of hardware built into the chip. Different versions of the HC12 have slightly different pieces of hardware. We are using the MC68HC912B32 chip

More information

The MC9S12 address, data and control buses The MC9S12 single-chip mode memory map Simplified write/read cycle. Address, Data and Control Buses

The MC9S12 address, data and control buses The MC9S12 single-chip mode memory map Simplified write/read cycle. Address, Data and Control Buses EE 308 Spring 2013 The MC9S12 address, data and control buses The MC9S12 single-chip mode memory map Simplified write/read cycle The real MC9S12 multiplexed external bus Byte order in microprocessors How

More information

Hardware Version 1.0 Monitor Version 1.2. English Release October

Hardware Version 1.0 Monitor Version 1.2. English Release October Hardware Version 1.0 Monitor Version 1.2 English Release October 7 1999 Copyright (C)1996-98 by MCT Elektronikladen GbR Hohe Str. 9-13 D-04107 Leipzig Telefon: +49-(0)341-2118354 Fax: +49-(0)341-2118355

More information

UNIVERSITY OF HONG KONG DEPARTMENT OF ELECTRICAL AND ELECTRONIC ENGINEERING

UNIVERSITY OF HONG KONG DEPARTMENT OF ELECTRICAL AND ELECTRONIC ENGINEERING UNIVERSITY OF HONG KONG DEPARTMENT OF ELECTRICAL AND ELECTRONIC ENGINEERING Experiment PCO: Principles of Computer Operation Location: Part I Lab., CYC 102. Objective: The objective is to learn the basic

More information

The 9S12 in Expanded Mode - Using MSI logic to build ports Huang Chapter 14

The 9S12 in Expanded Mode - Using MSI logic to build ports Huang Chapter 14 The 9S12 in Expanded Mode - Using MSI logic to build ports Huang Chapter 14 Using MSI Logic To Build An Output Port Many designs use standard MSI logic for microprocessor expansion This provides an inexpensive

More information

ECE331 Handout 3- ASM Instructions, Address Modes and Directives

ECE331 Handout 3- ASM Instructions, Address Modes and Directives ECE331 Handout 3- ASM Instructions, Address Modes and Directives ASM Instructions Functional Instruction Groups Data Transfer/Manipulation Arithmetic Logic & Bit Operations Data Test Branch Function Call

More information

MC9S12 Assembler Directives A Summary of MC9S12 Instructions Disassembly of MC9S12 op codes. Summary of HCS12 addressing modes ADDRESSING MODES

MC9S12 Assembler Directives A Summary of MC9S12 Instructions Disassembly of MC9S12 op codes. Summary of HCS12 addressing modes ADDRESSING MODES MC9S12 Assembler Directives A Summary of MC9S12 Instructions Disassembly of MC9S12 op codes o Review of Addressing Modes o Which branch instruction to use (signed vs unsigned) o Using X and Y registers

More information

Microcontrollers. Microcontroller

Microcontrollers. Microcontroller Microcontrollers Microcontroller A microprocessor on a single integrated circuit intended to operate as an embedded system. As well as a CPU, a microcontroller typically includes small amounts of RAM and

More information

Lecture 25 March 23, 2012 Introduction to Serial Communications

Lecture 25 March 23, 2012 Introduction to Serial Communications Lecture 25 March 23, 2012 Introduction to Serial Communications Parallel Communications Parallel Communications with Handshaking Serial Communications Asynchronous Serial (e.g., SCI, RS-232) Synchronous

More information

Mark II Aiken Relay Calculator

Mark II Aiken Relay Calculator Introduction to Embedded Microcomputer Systems Lecture 6.1 Mark II Aiken Relay Calculator 2.12. Tutorial 2. Arithmetic and logical operations format descriptions examples h 8-bit unsigned hexadecimal $00

More information

Roberto Muscedere Images and Text Portions 2003 Prentice Hall 1

Roberto Muscedere Images and Text Portions 2003 Prentice Hall 1 Microcomputer Structure and Operation Chapter 5 A Microprocessor ( P) contains the controller, ALU and internal registers A Microcomputer ( C) contains a microprocessor, memory (RAM, ROM, etc), input and

More information

Ryerson University Department of Electrical and Computer Engineering ELE 538 Microprocessor Systems Final Examination December 8, 2003

Ryerson University Department of Electrical and Computer Engineering ELE 538 Microprocessor Systems Final Examination December 8, 2003 Ryerson University Department of Electrical and Computer Engineering ELE 538 Microprocessor Systems Final Examination December 8, 23 Name: Student Number: Time limit: 3 hours Section: Examiners: K Clowes,

More information

Comparison of C and Assembly How to compile a C program using CodeWarrior

Comparison of C and Assembly How to compile a C program using CodeWarrior Comparison of C and Assembly How to compile a C program using CodeWarrior o Using pointers to access contents of specific addresses in C o Including and using derivative.h or hcs12.h to use in MC9S12 port

More information

Decimal, Hexadecimal and Binary Numbers Writing an assembly language program

Decimal, Hexadecimal and Binary Numbers Writing an assembly language program Decimal, Hexadecimal and Binary Numbers Writing an assembly language program o Disassembly of MC9S12 op codes o Use flow charts to lay out structure of program o Use common flow structures if-then if-then-else

More information

EE4390 Microprocessors. Lessons 2, 3 68HC12 Hardware Overview, Subsystems, and memory System

EE4390 Microprocessors. Lessons 2, 3 68HC12 Hardware Overview, Subsystems, and memory System EE4390 Microprocessors Lessons 2, 3 68HC12 Hardware Overview, Subsystems, and memory System 1 Overview 68HC12 hardware overview Subsystems Memory System 2 68HC12 Hardware Overview "Copyright of Motorola,

More information

ME4447/6405. Microprocessor Control of Manufacturing Systems and Introduction to Mechatronics. Instructor: Professor Charles Ume LECTURE 7

ME4447/6405. Microprocessor Control of Manufacturing Systems and Introduction to Mechatronics. Instructor: Professor Charles Ume LECTURE 7 ME4447/6405 Microprocessor Control of Manufacturing Systems and Introduction to Mechatronics Instructor: Professor Charles Ume LECTURE 7 Reading Assignments Reading assignments for this week and next

More information

CMPEN 472 Sample EXAM II

CMPEN 472 Sample EXAM II CMPEN 472 Sample EXAM II Name: Student ID number (last 4 digit): Please write your name on every page. Write your solutions clearly. You may use backside of each page for scratch but the solutions must

More information

Comparison of C and Assembly How to compile a C program using CodeWarrior

Comparison of C and Assembly How to compile a C program using CodeWarrior Comparison of C and Assembly How to compile a C program using CodeWarrior o Using pointers to access contents of specific addresses in C o Including and using derivative.h or hcs12.h to use in MC9S12 port

More information

Interrupt vectors for the 68HC912B32. The interrupt vectors for the MC9S12DP256 are located in memory from 0xFF80 to 0xFFFF.

Interrupt vectors for the 68HC912B32. The interrupt vectors for the MC9S12DP256 are located in memory from 0xFF80 to 0xFFFF. Interrupts The Real Time Interrupt Interrupt vectors for the 68HC912B32 The interrupt vectors for the MC9S12DP256 are located in memory from 0xFF80 to 0xFFFF. These vectors are programmed into Flash EEPROM

More information

Using the MC9S12 in Expanded Mode External Ports S12CPUV2 Reference Manual Multiplexed External Bus Interface (MEBI) Module V3 Block User Guide

Using the MC9S12 in Expanded Mode External Ports S12CPUV2 Reference Manual Multiplexed External Bus Interface (MEBI) Module V3 Block User Guide Using the MC9S12 in Expanded Mode External Ports S12CPUV2 Reference Manual Multiplexed External Bus Interface (MEBI) Module V3 Block User Guide - Computer with N bit address bus can access 2 N bytes of

More information

MC68HC812A4. Data Sheet M68HC12. Microcontrollers. MC68HC812A4/D Rev. 6, 8/2002 MOTOROLA.COM/SEMICONDUCTORS

MC68HC812A4. Data Sheet M68HC12. Microcontrollers. MC68HC812A4/D Rev. 6, 8/2002 MOTOROLA.COM/SEMICONDUCTORS MC68HC812A4 Data Sheet M68HC12 Microcontrollers MC68HC812A4/D Rev. 6, 8/2002 MOTOROLA.COM/SEMICONDUCTORS MC68HC812A4 Data Sheet To provide the most up-to-date information, the revision of our documents

More information

ECE3120: Computer Systems Chapter 7: Interfacing I/O Devices Lab-Class

ECE3120: Computer Systems Chapter 7: Interfacing I/O Devices Lab-Class ECE32: Computer Systems Chapter 7: Interfacing I/O Devices Lab-Class Manjeera Jeedigunta http://blogscaetntechedu/msjeedigun2 Email: msjeedigun2@tntechedu Tel: 93-372-68, Prescott Hall 2 Today Interfacing

More information

EE319K Laborartory Manual Univ of Texas at Austin Bard, Daniels, Welker Spring 2008

EE319K Laborartory Manual Univ of Texas at Austin Bard, Daniels, Welker Spring 2008 Jonathan W. Valvano Page 1 EE319K Laborartory Manual Univ of Texas at Austin Bard, Daniels, Welker Spring 2008 Table of Contents LAB 1. A DIGITAL LOCK...3 LAB 2 ANALYSIS OF MICROCONTROLLER EXECUTION...5

More information

ECE3120: Computer Systems Hardware & Software Development Tools

ECE3120: Computer Systems Hardware & Software Development Tools ECE3120: Computer Systems Hardware & Software Development Tools Manjeera Jeedigunta http://blogs.cae.tntech.edu/msjeedigun21 Email: msjeedigun21@tntech.edu Tel: 931-372-6181, Prescott Hall 120 Using the

More information

Introduction to Embedded Systems and Chapter 1: Introduction to HCS12/MC9S12. EE383: Introduction to Embedded Systems University of Kentucky

Introduction to Embedded Systems and Chapter 1: Introduction to HCS12/MC9S12. EE383: Introduction to Embedded Systems University of Kentucky Introduction to Embedded Systems and Chapter 1: Introduction to HCS12/MC9S12 EE383: Introduction to Embedded Systems University of Kentucky Samir Rawashdeh With slides based on material by H. Huang Delmar

More information

Sample Problem Set #1

Sample Problem Set #1 Sample Problem Set #1 Notes: These problems are typical exam problems; most are drawn from previous homeworks and exams. This exam is open book, open notes. It may help to have a calculator. For partial

More information

Chapter 4: Advanced Assembly Programming. EE383: Introduction to Embedded Systems University of Kentucky. Samir Rawashdeh

Chapter 4: Advanced Assembly Programming. EE383: Introduction to Embedded Systems University of Kentucky. Samir Rawashdeh Chapter 4: Advanced Assembly Programming EE383: Introduction to Embedded Systems University of Kentucky Samir Rawashdeh With slides based on material by H Huang Delmar Cengage Learning Chapter Summery

More information

Chapter 14. Motorola MC68HC11 Family MCU Architecture

Chapter 14. Motorola MC68HC11 Family MCU Architecture Chapter 14 Motorola MC68HC11 Family MCU Architecture Lesson 1 68HC11 MCU Architecture overview 2 Outline CPU Registers, MCU Architecture overview Address and Data Buses Execution Unit- ALU Ports 3 CPU

More information

Coe538 Final Study Guide 2016 (Questions & Answers)

Coe538 Final Study Guide 2016 (Questions & Answers) Coe538 Study Guide 1 of 8 Coe538 Final Study Guide 2016 (Questions & Answers) This version contains questions AND answers. This study guide is meant to help you review coe538 and prepare for the final.

More information

EE 3170 Microcontroller Applications

EE 3170 Microcontroller Applications Block Diagram of 68HC11A8 EE 3170 Microcontroller Applications Lecture 14: Advanced 68HC11 Hardware- Part II: Serial Communications Interfacing - Miller 7.10 Interrupt control Clock Mode control A/D ref.

More information

Go Gators! Relax! May the Schwartz be with you!

Go Gators! Relax! May the Schwartz be with you! Page 1/12 Exam 1 Instructions: Turn off cell phones beepers and other noise making devices. Show all work on the front of the test papers. If you need more room make a clearly indicated note on the front

More information

Module 3.C. Serial Peripheral Interface (SPI) Tim Rogers 2017

Module 3.C. Serial Peripheral Interface (SPI) Tim Rogers 2017 Module 3.C Serial Peripheral Interface (SPI) Tim Rogers 2017 Learning Outcome #3 An ability to effectively utilize the wide variety of peripherals integrated into a contemporary microcontroller How? A:

More information

MC68HC908GR8A MC68HC908GR4A Data Sheet

MC68HC908GR8A MC68HC908GR4A Data Sheet MC68HC908GR8A MC68HC908GRA Data Sheet M68HC08 Microcontrollers MC68HC908GR8A Rev. 5 0/2007 freescale.com MC68HC908GR8A MC68HC908GRA Data Sheet To provide the most up-to-date information, the revision

More information

EE 308 Spring Lecture 28 March 30, 2012 Review for Exam 2. Introduction to the MC9S12 Expanded Mode

EE 308 Spring Lecture 28 March 30, 2012 Review for Exam 2. Introduction to the MC9S12 Expanded Mode Lecture 28 March 30, 2012 Review for Exam 2 Introduction to the MC9S12 Expanded Mode 1 Review for Exam 2 1. C Programming (a) Setting and clearing bits in registers PORTA = PORTA 0x02; PORTA = PORTA &

More information

UNIVERSITY OF HONG KONG DEPARTMENT OF ELECTRICAL AND ELECTRONIC ENGINEERING. Principles of Computer Operation

UNIVERSITY OF HONG KONG DEPARTMENT OF ELECTRICAL AND ELECTRONIC ENGINEERING. Principles of Computer Operation UNIVERSITY OF HONG KONG DEPARTMENT OF ELECTRICAL AND ELECTRONIC ENGINEERING Experiment PCO: Principles of Computer Operation Location: Part I Lab., CYC 102. Objective: The objective is to learn the basic

More information

EVB9S12XF512E User Manual Daniel Morfin Guadalajara, Jal. Mexico

EVB9S12XF512E User Manual Daniel Morfin Guadalajara, Jal. Mexico Freescale Semiconductor User Manual Document Number: EVB9S12XF512UM Rev. 0, 06/2007 EVB9S12XF512E User Manual by: Daniel Morfin Guadalajara, Jal. Mexico 1 Introduction and Default Settings This kit contains

More information

AN1745. Interfacing the HC705C8A to an LCD Module By Mark Glenewinkel Consumer Systems Group Austin, Texas. Introduction

AN1745. Interfacing the HC705C8A to an LCD Module By Mark Glenewinkel Consumer Systems Group Austin, Texas. Introduction Order this document by /D Interfacing the HC705C8A to an LCD Module By Mark Glenewinkel Consumer Systems Group Austin, Texas Introduction More and more applications are requiring liquid crystal displays

More information

ASSIGNMENT 4: INTRODUCTION TO THE 68HC11. Out: Monday, Sep 29, 2003 Due Monday, Oct 6, 2003

ASSIGNMENT 4: INTRODUCTION TO THE 68HC11. Out: Monday, Sep 29, 2003 Due Monday, Oct 6, 2003 ASSIGNMENT 4: INTRODUCTION TO THE 68HC11 Out: Monday, Sep 29, 2003 Due Monday, Oct 6, 2003 Introduction In this assignment, you will (1) construct a minimal 68HC11 system on your breadboard, and (2) use

More information

1. Memory Mapped Systems 2. Adding Unsigned Numbers

1. Memory Mapped Systems 2. Adding Unsigned Numbers 1 Memory Mapped Systems 2 Adding Unsigned Numbers 1 1 Memory Mapped Systems Our system uses a memory space Address bus is 16-bit locations Data bus is 8-bit 2 Adding Unsigned Numbers 2 Our system uses

More information

EE319 K Lecture 7. Address mode review Assembler, Debugging Psuedo ops 16 bit timer finite state machines. University of Texas ECE

EE319 K Lecture 7. Address mode review Assembler, Debugging Psuedo ops 16 bit timer finite state machines. University of Texas ECE EE319 K Lecture 7 Address mode review Assembler, Debugging Psuedo ops 16 bit timer finite state machines University of Texas ECE Texas and execution A $24 EEPROM $F800 $F801 $86 $F802 $24 $F803 }ldaa #36

More information

Addition and Subtraction of Hexadecimal Numbers Simple assembly language programming

Addition and Subtraction of Hexadecimal Numbers Simple assembly language programming Addition and Subtraction of Hexadecimal Numbers Simple assembly language programming o A simple Assembly Language Program o Assembling an Assembly Language Program o Simple 9S12 programs o Hex code generated

More information

Review for Exam III. Analog/Digital Converters. The MC9S12 has two 10-bit successive approximation A/D converters - can be used in 8-bit mode

Review for Exam III. Analog/Digital Converters. The MC9S12 has two 10-bit successive approximation A/D converters - can be used in 8-bit mode Methods used for A/D converters Flash (Parallel) Successive Approximation Review for Exam III Analog/Digital Converters A/D converters are classified according to: Resolution (number of bits) Speed (number

More information

Lab 2 Part 1 Assembly Language Programming and 9S12 Ports

Lab 2 Part 1 Assembly Language Programming and 9S12 Ports Lab 2 Part 1 Assembly Language Programming and 9S12 Ports In this sequence of three labs, you will learn how to write simple assembly language programs for the MC9S12 microcontroller, and how to use general

More information

EE 3170 Microcontroller Applications

EE 3170 Microcontroller Applications Block Diagram of 68HC11A8 EE 3170 Microcontroller Applications Lecture 14: Advanced 68HC11 Hardware- PartI A: Measuring Real-Time in the 68HC11 - Miller 7.7-7.8 Based on slides for ECE3170 by Profs. Davis,

More information

The MC9S12 in Expanded Mode Using MSI logic to build ports Using MSI logic to build an output port Using MSI logic to build an input port

The MC9S12 in Expanded Mode Using MSI logic to build ports Using MSI logic to build an output port Using MSI logic to build an input port The MC9S12 in Expanded Mode Using MSI logic to build ports Using MSI logic to build an output port Using MSI logic to build an input port A Simple Parallel Output Port We want a port which will write 8

More information

Assignment 2: 68HC11 Boot Lab

Assignment 2: 68HC11 Boot Lab ASSIGNMENT 2: 68HC11 Boot Lab Introduction In this assignment, you will: construct a 68HC11 system on your breadboard, and use the serial port of a computer to load programs into it. load a known-working

More information

M68HC11 E SERIES HCMOS MICROCONTROLLER UNIT

M68HC11 E SERIES HCMOS MICROCONTROLLER UNIT M68HC11 E SERIES HCMOS MICROCONTROLLER UNIT Motorola reserves the right to make changes without further notice to any products herein. Motorola makes no warranty, representation or guarantee regarding

More information

Parallel Data Transfer. Suppose you need to transfer data from one HCS12 to another. How can you do this?

Parallel Data Transfer. Suppose you need to transfer data from one HCS12 to another. How can you do this? Introduction the Serial Communications Huang Sections 9.2, 10.2, 11.2 SCI Block User Guide SPI Block User Guide IIC Block User Guide o Parallel vs Serial Communication o Synchronous and Asynchronous Serial

More information

Getting Started with the HCS12 IDE

Getting Started with the HCS12 IDE Getting Started with the HCS12 IDE B. Ackland June 2015 This document provides basic instructions for installing and using the MiniIDE Integrated Development Environment and the Java based HCS12 simulator.

More information

AN Kbyte Addressing with the M68HC11. Overview

AN Kbyte Addressing with the M68HC11. Overview Order this document by /D 128-Kbyte Addressing with the M68HC11 By Ross Mitchell MCU Applications Engineering Freescale Ltd. East Kilbride, Scotland Overview The maximum direct addressing capability of

More information

MC68HC908GR16 Data Sheet

MC68HC908GR16 Data Sheet MC68HC908GR16 Data Sheet M68HC08 Microcontrollers MC68HC908GR16 Rev. 5.0 0/2007 freescale.com MC68HC908GR16 Data Sheet To provide the most up-to-date information, the revision of our documents on the

More information

Most of the HC12 s instructions access data in memory There are several ways for the HC12 to determine which address to access

Most of the HC12 s instructions access data in memory There are several ways for the HC12 to determine which address to access HC12 Addressing Modes Instruction coding and execution o Inherent, Extended, Direct, Immediate, Indexed, and Relative Modes o Summary of MC9S12 Addressing Modes o Using X and Y registers as pointers o

More information