ICE Emulator for Hitachi H8/300 and H8/500

Size: px
Start display at page:

Download "ICE Emulator for Hitachi H8/300 and H8/500"

Transcription

1 ICE Emulator for Hitachi H8/300 and H8/500 TRACE32 Online Help TRACE32 Directory TRACE32 Index TRACE32 Documents... ICE In-Circuit Emulator... ICE Target Guides... ICE Emulator for Hitachi H8/300 and H8/ WARNING... 4 Quick Start... 5 Troubleshooting... 8 Dual-Port Errors 8 FAQ... 9 Basics Emulation Modes 10 SYStem.Clock Clock generation 11 SYStem.CPU Processors type 11 SYStem.CPU Operation mode 12 Emulation Method 12 Configuration 13 System.Access Dual-port access 13 General System Settings and Restrictions Restrictions 14 MAP.OPFetch Define program area 14 SYStem.Option Processor options 15 Exception Control RES- Line 16 NMI- Line 16 STBY- Line 17 BREQ- Line 17 Memory Classes Banked Target Systems (H8/300) Internal 19 External 20 Memory and IO Access Routines 21 ICE Emulator for Hitachi H8/300 and H8/500 1

2 State Analyzer Keywords for the Trigger Unit 22 CPU specific Data Selectors 23 Keywords for the Display 23 Dequeueing 23 Port Analyzer Keywords for the Port Analyzer (H8/300) 24 Keywords for the Port Analyzer (H8/300H) 24 Additional Trace Channels 25 Keywords for the Port Analyzer (H8/500) 25 Compilers Compilers H8_ Compilers H8_300H 26 Compilers H8_ Compilers H8s 27 3rd Party Tool Integrations RTOS Support Emulation Frequency Emulation Modules Module Overview 33 Order Information 38 Operation Voltage Physical Dimensions Adapter ICE Emulator for Hitachi H8/300 and H8/500 2

3 ICE Emulator for Hitachi H8/300 and H8/500 Version 06-Nov-2017 P:0012DE \\IARH8300\iarh8300\sieve MIX AI E::w.d.l addr/line code label mnemonic comment P:0012DA 6FF30004 mov.w ; 610 while ( k <= SIZE ) P:0012DE 6F710004?0178: P:0012E2 A912 cmp.b #12,r1l ; #18,r1l P:0012E4 B100 subx.b #0,r1h ; #0,r1h P:0012E6 4E1A bgt 1302 ;?0177 { 612 flags[ k ] = FALSE; P:0012E8 F900?0179: mov.b #0,r1l ; #0,r1l P:0012EA 6F E::w.r E::w.v.l E::w.per Cy _ R0 0BC SP >000E sieve() V _ R1 0E F i = 14 Module FRT Free Running Timer Zr _ R D primz = 31 TCRX 00 ICIE no OCIEB no OC Neg _ R3 2D k = 45 TCSR 70 ICF no OCFB yes OC H _ R anzahl = 9 FRC 5B32 I _ R5 0 +0A 614E OCRA FFFF Tsk R6 0 +0C C214 OCRB FFFF R7 0C412 +0E 0000 ICR 0000 PC 12DE A FNCR FC For general informations about the In-Circuit Debugger refer to the ICE User s Guide (ice_user.pdf). All general commands are described in IDE Reference Guide (ide_ref.pdf) and General Commands and Functions. ICE Emulator for Hitachi H8/300 and H8/500 3

4 WARNING NOTE: Do not connect or remove probe from target while target power is ON. Power up: Switch on emulator first, then target Power down: Switch off target first, then emulator ICE Emulator for Hitachi H8/300 and H8/500 4

5 Quick Start Before debugging can be started, the emulator must be configured by software: Ready to run setup files for most standard compilers can be found on the software CD in the directory /Demo/H8300H/Compiler. All setup files are designed to run the emulator stand alone without target hardware. The following description should make the initial setup (to run the emulator together with the target hardware) easier. It describes a typical setup with frequently used settings. It is recommended to use the programming language PRACTICE to create a batch file, which includes all necessary setup commands. PRACTICE files (*.cmm) can be created with the PRACTICE editor pedit (Command: PEDIT <file name>) or with any other text editor. A basic setup file includes the following parts: 1. Set cpu-type and -mode 2. Set system options 3. Select dualport mode (optional) 4. Set mapper (optional) 5. Select frequency (optional) 6. Activate the emulator 7. Load application file (optional) 8. Set breakpoints (optional) 9. Start application 10. Stop application (optional) ICE Emulator for Hitachi H8/300 and H8/500 5

6 Here a typical example, how to setup the system: 1. Set cpu-type and -mode options The command sys.cpu is used to select one derivative within a cpu-family and to set its operation mode. system.down system.cpu 0x3048 system.cpu exp16m16 ; switch the system down ; select derivative H8/3048 ; set the operation mode EXP16M16 2. Set system options The system window controls the CPU specific setup. Please check this window very carefully and set? the appropriate options. Use the button in the main tool bar and click to the option check box (Command: HELP.PICK) to get online help in a pop up window. system.option v33 on ; on: if a 3.3 V target board is used 3. Select dualport mode (optional) Dualport allows access to emulation RAM, while emulation is running. This is necessary to display variables, set breakpoints or display the flag listings while the emulation is running. System.Access selects how dualport access is done. system.access idle ; idle: The dual-port access is made during ; idle states of the CPU ; denied: dualport is disabled 4. Set mapper (optional) The mapper controls the memory access of the CPU. This means the use of internal or external memory, the protection of a memory bank etc. Address ranges must be defined by using memory classes. map.reset map.ram c:0x0--0x07ffff map.ram c:0x x23ffff map.intern c:0x0--0x07ffff map.extern c:0x x23ffff ; reset mapper (all external) ; emulation RAM: 512KB (e.g. for program) ; emulation RAM: 256KB (e.g. for data) ; map program memory internal ; map data memory external ICE Emulator for Hitachi H8/300 and H8/500 6

7 5. Select frequency (optional) The CPU can be clocked by an internal (emulator) or external (target) clock source. If the internal clock is used, the clock is provides by the VCO of the emulator. The setting of the internal clock is done by the vco command. The current CPU frequency can be displayed in the counter window. vco.clock 20. ; input clock to the EXTAL pin of the cpu is ; set to 20 MHz (only necessary if internal ; clock is used) 6. Activate the emulator When the emulator is activated a debug-monitor program is loaded into a hidden emulator memory. Afterwards, a bondout reset-signal is inactivated and the monitor program starts. This program allows access to user memory (data.dump, data.list) and cpu-registers, and gives control to start and stop the emulation. system.mode emulext ; system works with external target clock 7. Load application file (optional) Application can be loaded by various file formats. UBROF format is often used to load code and symbol information. For information about the load command for your compiler see Compiler. data.load.ubrof iarh83h.dbg ; load application file 8. Set breakpoints (optional) There are several ways to set breakpoints (Command: Break.Set). Breakpoints can be displayed using the Break.List command. breakpoint.set main /program breakpoint.set flags /write ; set program break on function main ; set write break on variable ; flags 9. Start application Application can be started with giving a break address. For example go main starts the application and stops at symbol main. go ; run application 10. Stop application (optional) Application can be breaked manually by using th BREAK command. break ; break application manually ICE Emulator for Hitachi H8/300 and H8/500 7

8 Troubleshooting Dual-Port Errors Dual-port error may occur, when the CPU doesn't generate bus cycles (or idle cycles). The performance reduction by the dual-port access in clock-steal mode is typically 1% with some data windows (dual-ported) on the screen and may be at max. 5% when using dynamic emulation memory. ICE Emulator for Hitachi H8/300 and H8/500 8

9 FAQ Why is the location after break wrong? Most emulators use some bytes of user stack for the break system. Therefore it is necessary to have valid stack, if single step or breakpoints are used. ICE Emulator for Hitachi H8/300 and H8/500 9

10 Basics Emulation Modes E::w.sys system Mode Clock TimeReq CPU CPU Down RESet VCO 1.000ms Expanded 322 Up Analyzer Low TimeOut ExpROM 323 Monitor Mid us Single 324 RESet ResetDown High 325 ResetUp Line 326 reset NoProbe Access BREQ 327 RESetOut AloneInt Nodelay 328 AloneExt Wait 329 cpu-type EmulInt ClkSteal 330 H8/325 EmulExt Idle MHz Denied K K The emulations head can stay in 6 modes. The modes are selected by the SYStem.Up or the SYStem.Mode command. Format: SYStem.Mode <mode> <mode>: ResetDown ResetUp AloneInt AloneExt EmulInt EmulExt Reset Down Reset Up Alone Internal Alone External Target is down, all drivers a in tristate mode. Target has power, drivers are logically in inactive state, but not tristate. Probe is running with internal clock, driver inactive. Probe is running with external clock, driver inactive. Emulation Internal Emulation External Probe is running with internal clock, strobes to target are generated. Probe is running with external clock, strobes to target are activated. ICE Emulator for Hitachi H8/300 and H8/500 10

11 In active mode, the power of the target is sensed and by switching down the target the emulator changes to RESET mode. The probe is not supplied by the target. When running without target, the target voltage is simulated by an internal pull-up resistor. The reset vectors for the program start address are read in the CPU registers with the Register.RESet command. SYStem.Clock Clock generation Format: SYStem.Clock <option> <option>: VCO High Mid Low VCO Low, Mid, High Variable frequency 1 35 MHz. 2.5, 5.0 or 10.0 MHz. SYStem.CPU Processors type Format: SYStem.CPU <option> <option>: Selects the emulated processor type for pin compatible CPUs. ICE Emulator for Hitachi H8/300 and H8/500 11

12 SYStem.CPU Operation mode Format: SYStem.CPU <option> <option>: Expanded ExpROM Single EXP1M8 EXP1M16 EXP16M8 EXP16M16 ROM1M8 ROM16M8 SINGLE64K SINGLE1M Expanded ExpROM Single EXP1M8 EXP1M16 EXP16M8 EXP16M16 ROM1M8 ROM16M8 SINGLE64K SINGLE1M Operation with external bus only Operation with external bus, internal ROM is used Single-chip operation, no external bus Expanded mode with 1 MByte address range, 8-bit initial bus width and on-chip ROM disabled Expanded mode with 1 MByte address range, 16-bit initial bus width and onchip ROM disabled Expanded mode with 16 MByte address range, 8-bit initial bus width and onchip ROM disabled Expanded mode with 16 MByte address range, 16-bit initial bus width and onchip ROM disabled Expanded mode with 1 MByte address range, 8-bit initial bus width and on-chip ROM enabled Expanded mode with 16 MByte address range, 8-bit initial bus width and onchip ROM enabled Single-chip mode with 64 KByte address range and no external bus Single-chip mode with 1 MByte address range and no external bus Emulation Method The ICE module uses BOND-OUT versions of the H8 chip. The internal bus size is 16 bit. Therefore the base unit must always be an ECU32. The Bondout chip replaces the target cpu, i.e. the target cpu must be removed during emulation! ICE Emulator for Hitachi H8/300 and H8/500 12

13 Configuration The configuration of the different target CPUs and sockets is done by changing the module or the socket adapters. The port analyzer is optional. The software configuration is done automatically. Pin compatible CPUs may require the SYStem.CPU command to distinguish between the chips. System.Access Dual-port access Format: SYStem.Access <option> <option>: Nodelay Wait ClkSteal Idle Denied Nodelay Wait ClkSteal Idle Denied The dual-port access can be done on every bus cycle. The program execution time is not changed by dual-port access. The access is made by extending the bus cycles with wait states. This method enables dualport accesses by stopping the clock for some cycles. The clock source must be set to clock steal and the internal VCO generates the clock. It is not possible to run this access mode with external clock signals or with 32 khz clock sources (PLL system active). The dual-port access is made during idle states of the CPU. This allows higher emulation speed than the NODELAY mode. The CPU must generate idle cycles, this usually happens with JMP-, JSR-, MUL- and SLEEP-instructions. No dualport access allowed. On realtime emulation all windows, which need dualport access are frozen. Breakpoints should not be set while realtime emulation is working. ICE Emulator for Hitachi H8/300 and H8/500 13

14 General System Settings and Restrictions Restrictions Program Breakpoints The code area for H8/300 CPU's must be marked with the MAP.OPF command. Otherwise program breakpoints and HLL stepping will not work properly. MAP.OPFetch Define program area Format: MAP.OPFetch <range> Format: MAP.NoOPFetch <range> The H8/300 bound-out CPUs deliver no opfetch information on the first bus cycle. For correct operation of the emulator and the performance analyzer the cycle type must be known. ROM based variables should be linked together in an extra area. Mixing of code and ROM based variables is not recommended. ICE Emulator for Hitachi H8/300 and H8/500 14

15 SYStem.Option Processor options Format: SYStem.Option <option> [ON OFF] <option>: TestClock V33 CLKDIV NMIPOS TestClock V33 CLKDIV NMIPOS Enables or disables the supervision of the external CPU clock. Supervision of the CPU power supply from the target is set to 3.3 V Divides the external CPU clock by two (only necessary for clock-halving version of H8/3003) Sets the NMI polarity to rising edge ICE Emulator for Hitachi H8/300 and H8/500 15

16 Exception Control E::w.x exception Activate Enable Trigger Puls Puls OFF OFF OFF OFF OFF Single ON RESet ON ON RESet Width RESet STBY RESet RESet STBY 1.000us Delay NMI STBY STBY NMI PERiod OFF NMI NMI BREQ PULS RES- Line VCC 22k RES- Target >=1 X.Enable X.Puls- & RES- X.Activate- CPU Format: exception.enable RESet [ON OFF] Format: exception.activate RESet [ON OFF] NMI- Line VCC 22k NMI- Target >=1 & X.Enable X.Puls- NMI- CPU Format: exception.enable NMI [ON OFF] Format: exception.activate NMI [ON OFF] ICE Emulator for Hitachi H8/300 and H8/500 16

17 STBY- Line VCC 22k STBY- Target >=1 X.Enable X.Puls- & STBY- X.Activate- CPU Format: exception.enable STBY [ON OFF] Format: exception.activate STBY [ON OFF] BREQ- Line VCC 22k BREQ- Target BREQ- X.Enable- >=1 CPU SYS.Line- * Run- Format: exception.enable BREQ [ON OFF] Format: SYStem.Line BREQ [ON OFF] ICE Emulator for Hitachi H8/300 and H8/500 17

18 Memory Classes Memory Class D P C E Description Data Program Memory access by CPU Emulation memory access ICE Emulator for Hitachi H8/300 and H8/500 18

19 Banked Target Systems (H8/300) Banking as described in this chapter refers to address extension of H/300 processors, not the internal extension of the H8/500 or H8/300H family. In banked systems the upper address lines are either supplied internally or by the external bank probe. 8 additional lines offer 256 different memory banks. Accessing the different pages is done by extending all memory and pc addresses to 24 bit. The address bits A16 to A23 select the memory bank. Every command which makes a memory access first calls a special bank driver subroutine to select the temporary memory bank. On realtime emulation the bank number is traced on the upper 8 bits of the address bus. The breakpoint function stores the bank address back to the MSB of the program counter. Format: SYStem.BankFile <file> This command loads the bank driver. The bank driver is a special subroutine to select the actual bank. Loading a special bank driver gives a maximum of flexibility to the user. A bank address delivered by the emulator may be used to set microcontroller ports or external MMUs in the target system. The bank file consists of a code number defining the bank operation mode and a code area which consists of a subroutine to set the correct bank state. Writes to internal CPU ports may be executed directly, while ports in target systems must be accessed by a special system call (see end of this chapter). The internal bank address is placed in R0L when calling the subroutine. The function code is in R0H. The write function to the target system needs the address in R4 and the data in R0L. The BNK register holds the physical bank number. The PP (Program Pointer) register holds the logical 24-bit PC address. The translation between logical bank and physical bank (also for the common areas and I/O space) is done by the MMU command. Format: SYStem.Bank <option> <option>: OFF INTernal EXTernal Internal Internal bank to support paged EPROMs. The internal bank register is set by writing to an address range selected by the command MAP.Bank. ICE Emulator for Hitachi H8/300 and H8/500 19

20 External External banked systems use a register or output pins of the CPU to generate the upper memory addresses. These lines must be feedback to the emulator with the bank probe. Unused inputs of the bank probe must be grounded (or jumpered to ground pin). ; This example uses a common program area on 0--3fffh a banked area from ; fff with 4 banks map.res map.mirror 0x0--0x3fff 0x10000 map.mirror 0x0--0x3fff 0x20000 map.mirror 0x0--0x3fff 0x30000 map.mirror io:0x0--0xffff io:0x10000 map.mirror io:0x0--0xffff io:0x20000 map.mirror io:0x0--0xffff io:0x30000 mmu.on system.bankfile banksel.bnk system.up ; reset mapper ; mirror for common area ; activate translation for ; addresses ; load bank file This example selects the bank by external port 0e000H bit 0 and 1: db 2 banking: cmp.b beq mov.w mov.b jsr and.b and.b and.b jsr rts isbreak: mov.w jsr and.b mov.b rts end #4,r0h isbreak #H'0e000,r4 #H'0fc,r0l #H'003,r1l #H'003,r0l r0l,@r6 ; using external banking logic ; get current port value ; place two bank bits in byte ; write port 3 value ; get current port value ; mask out bank bits ; save current bank ICE Emulator for Hitachi H8/300 and H8/500 20

21 The next examples shows the map and load commands with MMU translation for common ares: ; This example uses a common program area on 0--7fffh and a banked area ; from ffff with 2 banks system.bankfile banksel.bnk system.mode ai map.res map.mirror p:0x0--0x7fff p:0x10000 map.ram p:0x0--0x0ffff map.ram p:0xx x1ffff map.intern ; load bank file (uses physical ; banks) ; reset mapper ; mirror for common area ; map memory in banks and common symbol.reset mmu.reset mmu.create p:0x x07fff p:0x x07fff mmu.create p:0x x0ffff p:0x x0ffff mmu.create p:0x x07fff p:0x x17fff mmu.create p:0x x1ffff p:0x x1ffff mmu.on d.load.u applic.dbg /nc ; load file from ICCH8300 (IAR) Memory and IO Access Routines The following routines are available in the emulation control monitor to access external memory or i/o: Addr Function Address Data Result 0F00H MemWrite R4 R0L 0F10H MemRead R4 - R0L ICE Emulator for Hitachi H8/300 and H8/500 21

22 State Analyzer Keywords for the Trigger Unit Input Event Meaning Analyzer Hardware ECC8 HAC HA120 SA120 BYTE Byte transfer X X DRAM DRAM access X X X external External access X X X IACK Interrupt acknowledge X X INTRAM Internal RAM access X X X INTROM Internal ROM access X X X IO IO access X X X NMI NMI X X OPFetch First cycle of an opfetch sequence X X PORT Input line from port analyzer X X Read CPU read cycle X X X RESERVED Access in reserved area X X X Wait0.. Wait6 Waitstates X X WaitX more than 6 Waitstates X X WORD Word transfer X X Write CPU write Cycle X X X For not CPU-specific keywords, see non-declarable input variables in ICE/FIRE Analyzer Trigger Unit Programming Guide (analyzer_prog.pdf). ICE Emulator for Hitachi H8/300 and H8/500 22

23 CPU specific Data Selectors DATA Selectors The DATA Selectors for the H8300 family are less different against the analyzer description. The following declarations are allowed: DATA.W0 DATA.B0 DATA.B1 DATA.B8 ; word access into physically 16 bit area. ; byte access (bit 0x0--0x7) into phys. 16 bit area. ; byte access (bit 0x8--0x15) into phys. 16 bit area. ; byte access (bit 0x8--0x15) into phys. 8 bit area. The desired DATA selector can only be used, if the current CPU mode is the corresponding mode. Keywords for the Display Name Description BCYCLE ASEMON ASELID ASEBCCB ASEJBF ASEIACK NMI Byte transfer Code tracking information NMI Interrupt Dequeueing The disassembled lines in the analyzer are displayed prior to the resulting data cycles. This dequeueing fails for commands which have not a constant number of data cycles. ICE Emulator for Hitachi H8/300 and H8/500 23

24 Port Analyzer Keywords for the Port Analyzer (H8/300) P.10.. P.17 Port P.20.. P.23 Port P.30.. P.37 Port P.40.. P.47 Port P.60.. P.63 Port P.70.. P.77 Port P.80.. P.86 Port P.90.. P.97 Port P.NMI NMI- Keywords for the Port Analyzer (H8/300H) P.10.. P.17 Port P.20.. P.23 Port P.30.. P.37 Port P.40.. P.47 Port P.50.. P.57 Port P.60.. P.63 Port P.70.. P.77 Port P.80.. P.87 Port P.90.. P.97 Port ICE Emulator for Hitachi H8/300 and H8/500 24

25 Additional Trace Channels Not used trace channels on Port Analyzer are connected to pins placed on the emulation module. Module H8/300H Port.x7 2 Port.x6 3 Port.x5 4 Port.x4 5 Port.x3 6 Port.x2 7 Port.x1 8 Port.x0 9 n.c. 10 n.c. Keywords for the Port Analyzer (H8/500) P.10.. P.17 Port P.20.. P.23 Port P.30.. P.37 Port P.40.. P.47 Port P.50.. P.57 Port P.60.. P.63 Port P.70.. P.77 Port P.80.. P.87 Port P.90.. P.97 Port ICE Emulator for Hitachi H8/300 and H8/500 25

26 Compilers Compilers H8_300 Language Compiler Company Option Comment C GNU-C Free Software COFF H8/300 Foundation, Inc. C ICCH8300 IAR Systems AB UBROF H8/300 C MCCH83 Mentor Graphics IEEE H8/300 Corporation C CH38 Renesas Technology, SYSROF H8/300 Corp. C++ GNU-C++ Free Software Foundation, Inc. COFF H8/300 Compilers H8_300H Language Compiler Company Option Comment C GNU-C Free Software COFF H8/300H Foundation, Inc. C IARH8 IAR Systems AB UBROF H8/300H C CH38 Renesas Technology, SYSROF H8/300H Corp. C++ GNU-C++ Free Software Foundation, Inc. COFF H8/300H Compilers H8_500 Language Compiler Company Option Comment C ICCH8500 IAR Systems AB UBROF H8/500 C MCCH85 Mentor Graphics IEEE H8/500 Corporation C HICROSS-H8/500 NXP Semiconductors HICROSS H8/500 ICE Emulator for Hitachi H8/300 and H8/500 26

27 Compilers H8s Language Compiler Company Option Comment C ICCH8 IAR Systems AB UBROF H8S C CH38 Renesas Technology, SYSROF H8S Corp. C++ GNU Free Software COFF Foundation, Inc. C++ CH38 Renesas Technology, Corp. SYSROF ICE Emulator for Hitachi H8/300 and H8/500 27

28 3rd Party Tool Integrations CPU Tool Company Host WINDOWS CE PLATF. - Windows BUILDER CODE::BLOCKS - - C++TEST - Windows ADENEO - X-TOOLS / X32 blue river software GmbH Windows CODEWRIGHT Borland Software Windows Corporation CODE CONFIDENCE Code Confidence Ltd Windows TOOLS CODE CONFIDENCE Code Confidence Ltd Linux TOOLS EASYCODE EASYCODE GmbH Windows ECLIPSE Eclipse Foundation, Inc Windows CHRONVIEW Inchron GmbH Windows LDRA TOOL SUITE LDRA Technology, Inc. Windows UML DEBUGGER LieberLieber Software Windows GmbH SIMULINK The MathWorks Inc. Windows ATTOL TOOLS MicroMax Inc. Windows VISUAL BASIC Microsoft Corporation Windows INTERFACE LABVIEW NATIONAL Windows INSTRUMENTS Corporation RAPITIME Rapita Systems Ltd. Windows RHAPSODY IN MICROC IBM Corp. Windows RHAPSODY IN C++ IBM Corp. Windows DA-C RistanCASE Windows TRACEANALYZER Symtavision GmbH Windows TA INSPECTOR Timing Architects GmbH Windows UNDODB Undo Software Linux VECTORCAST UNIT Vector Software Windows TESTING VECTORCAST CODE COVERAGE Vector Software Windows ICE Emulator for Hitachi H8/300 and H8/500 28

29 RTOS Support Company Product Comment CMX Systems Inc. CMX-RTX Renesas Technology, Corp. HIOS (HI8-3H), not supported in EUR Mentor Graphics Nucleus Corporation - OSEK via ORTI Elektrobit Automotive GmbH ProOSEK via ORTI Company Product Comment CMX Systems Inc. CMX-RTX CMX Systems Inc. CMX-TINY freertos FreeRTOS v7 Mentor Graphics Nucleus Corporation Vector oscan via ORTI - OSEK via ORTI Elektrobit Automotive ProOSEK via ORTI GmbH Quadros Systems Inc. RTXC 3.2 ICE Emulator for Hitachi H8/300 and H8/500 29

30 Emulation Frequency The emulation probe is designed for running at a max. speed of 16 MHz. The max. usable speed is limited by the memory speed and the max. speed of the chip. Additional wait states may increase the frequency limit. The following table shows the maximum clock frequencies (not crystal frequency). NOTE: For high-speed emulation (> 13 MHz) without wait states the HA-120 analyzer should be used (internal bus has only two clock cycles). Oscillator Replacement The on-chip clock circuit of the H8 is replaced by a circuit on the emulation adapter. Oscillator Replacement AC04 AC04 INT. CLOCK -1-1 MUX to XTAL1 of CPU [100-KOhm] [390-Ohm] XTAL1 (29) XTAL2 (30) Emulation Socket Module CPU F-W0-15 F-W0-35 S-W0-15 S-W0-35 S-W1-15 S-W1-35 LA-6957 H8/ LA-6957 H8/ LA-6957 H8/ LA-6957 H8/ LA-6957 H8/ LA-6957 H8/ LA-6957 H8/ LA-6957 H8/ LA-6957 H8/ H8/ H8/ LA-6951 H8/ LA-6951 H8/ LA-6951 H8/ LA-6951 H8/ LA-6951 H8/ LA-6741 H8/ LA-6741 H8/ LA-6741 H8/ LA-6741 H8/ DRAM ICE Emulator for Hitachi H8/300 and H8/500 30

31 Module CPU F-W0-15 F-W0-35 S-W0-15 S-W0-35 S-W1-15 S-W1-35 LA-6741 H8/ LA-6741 H8/ LA-6742 H8/ LA-6742 H8/ LA-6742 H8/ LA-6742 H8/ LA-6793 H8/ LA-6793 H8/ LA-6793 H8/ LA-6793 H8/ LA-6743 H8/ LA-6792 H8/3334Y LA-6792 H8/3334YF LA-6792 H8/3336Y LA-6792 H8/3337Y LA-6742 H8/ LA-6742 H8/ LA-6742 H8/ LA-6792 H8/ LA-6792 H8/ LA-6792 H8/ LA-6794 H8/ LA-6794 H8/3434F LA-6794 H8/ LA-6794 H8/ LA-6744 H8/ LA-6952 H8/ LA-6952 H8/ LA-6952 H8/ LA-6952 H8/ LA-6952 H8/ LA-6953 H8/ LA-6953 H8/ LA-6953 H8/ LA-6953 H8/ LA-6953 H8/ LA-6953 H8/ LA-6953 H8/ LA-6745 H8/ LA-6746 H8/ DRAM ICE Emulator for Hitachi H8/300 and H8/500 31

32 Module CPU F-W0-15 F-W0-35 S-W0-15 S-W0-35 S-W1-15 S-W1-35 LA-6747 H8/534R LA-7300 H8/534S LA-6747 H8/536R LA-7300 H8/536S LA-7301 H8/ DRAM ICE Emulator for Hitachi H8/300 and H8/500 32

33 Emulation Modules Module Overview LA-6740 H8/3101 PIN V H8/3102 PIN V H8/322 DIL64 H8/322 ET64-QF29 H8/322 PLCC68 H8/323 DIL64 H8/323 ET64-QF29 H8/323 PLCC68 LA-6791 H8/324 DIL64 H8/324 ET64-QF29 H8/324 PLCC68 H8/325 DIL64 H8/325 ET64-QF29 H8/325 PLCC68 LA-6741 H8/3256 DIL64 H8/3256 ET64-QF29 H8/3256 PLCC68 H8/3257 DIL64 H8/3257 ET64-QF29 H8/3257 PLCC68 H8/322 PLCC68 H8/323 PLCC68 LA-6738 H8/324 PLCC68 H8/325 PLCC68 H8/3256 PLCC68 H8/3257 PLCC68 H8/326 DIL64 H8/326 PLCC68 LA-6739 H8/327 DIL64 H8/327 PLCC68 H8/328 DIL64 H8/328 PLCC68 LA-6742 H8/329 DIL64 H8/329 PLCC68 LA-6738 H8/336 PLCC84 H8/337 PLCC84 ICE Emulator for Hitachi H8/300 and H8/500 33

34 LA-6738 H8/338 PLCC84 LA-6740 LA-6742 H8/336 ET80-QF14 LA-6798 H8/337 ET80-QF14 H8/338 ET80-QF14 LA-6743 LA-6739 LA-6738 LA-6798 H8/330 PLCC84 H8/330 PLCC84 H8/330 ET80-QF14 LA-6739 H8/3334Y H8/3334YF H8/3336Y H8/3337Y PLCC84 PLCC84 PLCC84 PLCC84 H8/3394 PLCC84 H8/3396 PLCC84 H8/3397 PLCC84 LA-6792 H8/3334Y H8/3334Y H8/3334YF H8/3334YF H8/3336Y H8/3336Y ET80-QF14 ET80-QF47 ET80-QF14 ET80-QF47 ET80-QF14 ET80-QF47 LA-6798 H8/3337Y H8/3337Y ET80-QF14 ET80-QF47 LA-6744 LA-6739 LA-6738 H8/3394 ET80-QF14 H8/3394 ET80-QF47 H8/3396 ET80-QF14 H8/3396 ET80-QF47 H8/3397 ET80-QF14 H8/3397 ET80-QF47 H8/350 PLCC84 H8/350 PLCC84 ICE Emulator for Hitachi H8/300 and H8/500 34

35 H8/3292 DIL64 H8/3292 ET64-QF29 H8/3292 ET80-QF47 LA-6740 LA-6793 LA-6796 H8/3294 DIL64 H8/3294 ET64-QF29 H8/3294 ET80-QF47 H8/3296 DIL64 H8/3296 ET64-QF29 H8/3296 ET80-QF47 H8/3297 DIL64 H8/3297 ET64-QF29 H8/3297 ET80-QF47 H8/3434 ET100-QF49 LA-6794 LA-6795 H8/3434F ET100-QF49 H8/3436 ET100-QF49 H8/3437 ET100-QF49 H8/3202 DIL64 H8/3202 ET64-QF29 H8/3202 ET80-QF47 H8/3212 DIL64 H8/3212 ET64-QF29 H8/3212 ET80-QF47 LA-6951 LA-6799 H8/3214 DIL64 H8/3214 ET64-QF29 H8/3214 ET80-QF47 H8/3216 DIL64 H8/3216 ET64-QF29 H8/3216 ET80-QF47 H8/3217 DIL64 H8/3217 ET64-QF29 H8/3217 ET80-QF47 H8/3640 DIL V H8/3640 ET64-QF V H8/3640 ET80-QF V LA-6952 LA-6954 H8/3641 DIL V H8/3641 ET64-QF V H8/3641 ET80-QF V H8/3642 DIL V H8/3642 ET64-QF V H8/3642 ET80-QF V H8/3643 DIL V H8/3643 ET64-QF V ICE Emulator for Hitachi H8/300 and H8/500 35

36 H8/3643 ET80-QF V LA-6740 LA-6952 LA-6954 H8/3644 DIL V H8/3644 ET64-QF V H8/3644 ET80-QF V H8/3812 ET100-QF06 H8/3812 ET100-QF49 H8/3813 ET100-QF06 H8/3813 ET100-QF49 H8/3833 ET100-QF06 H8/3833 ET100-QF49 LA-6953 LA-6955 H8/3834 ET100-QF06 H8/3834 ET100-QF49 H8/3835 ET100-QF06 H8/3835 ET100-QF49 H8/3836 ET100-QF06 H8/3836 ET100-QF49 H8/3837 ET100-QF06 H8/3837 ET100-QF49 H8/3006 ET100-QF V H8/3006 ET100-QF V H8/3007 ET100-QF V H8/3007 ET100-QF V H8/3060 ET100-QF V H8/3060 ET100-QF V H8/3061 ET100-QF V H8/3061 ET100-QF V LA-6957 LA-6958 H8/3062 ET100-QF V H8/3062 ET100-QF V H8/3064 ET100-QF V H8/3064 ET100-QF V H8/3065 ET100-QF V H8/3065 ET100-QF V H8/3066 ET100-QF V H8/3066 ET100-QF V H8/3067 ET100-QF V H8/3067 ET100-QF V LA-6745 LA-6737 H8/520 DIL64 H8/520 PLCC68 LA-6746 LA-6737 H8/532 PLCC84 ICE Emulator for Hitachi H8/300 and H8/500 36

37 LA-6740 LA-6747 LA-6737 H8/534R H8/536R PLCC84 PLCC84 LA-7300 LA-6737 H8/534S H8/536S PLCC84 PLCC84 LA-7301 LA-6737 H8/537 PLCC84 ICE Emulator for Hitachi H8/300 and H8/500 37

38 Order Information Order No. Code Text LA-6740 ICE-H8 ICE-H8 Base Module LA-6741 M-H8/325 Module Top H8/325 LA-6791 A-H8/300-F Module Bottom H8/325/3257 Series LA-6742 M-H8/329/338 Module Top H8/329/338 LA-6743 M-H8/330 Module Top H8/330 LA-6792 M-H8/3334 Module Top H8/3334 LA-6744 M-H8/350 Module Top H8/350 LA-6739 A-H8/300-B Module Bottom H8/329, 330, 338, 350, 3334 LA-6738 A-H8/300-A Module Bottom H8/ , 330, , 350 LA-6798 A-H8/300-C Module Bottom H8/330, 338, 350, 3334, 3397 LA-6956 A-H8/3001 Module Bottom H8/3001 LA-6797 A-H8/3004/3005 Module Bottom H8/3004, 3005, 3078, 3079 LA-6735 A-H8/3032 Module Bottom H8/3032 LA-6793 M-H8/3297 Module Top H8/3297 LA-6796 A-H8/300-E Module Bottom H8/3297 Series LA-6794 M-H8/3437 Module Top H8/3437 LA-6795 A-H8/3437 Module Bottom H8/3437 LA-6951 M-H8/3217 Module Top H8/3217 LA-6799 A-H8/300-D Module Bottom H8/3217 Series LA-6952 M-H8/3644 Module Top H8/3644 family LA-6954 A-H8/3644 Module Bottom H8/3644 family LA-6953 M-H8/3814/3834 Module Top H8/3814/3834 family LA-6955 A-H8/3814/3834 Module Bottom H8/3814/3834 family LA-6940 M-H8/3827 Module Top H8/3827 LA-6941 A-H8/3827 Module Bottom H8/3827 LA-6957 M-H8/3067 Module Top H8/3067 LA-6958 A-H8/3067 Module Bottom H8/3067 LA-6745 M-H8/520 Module Top H8/520 LA-6746 M-H8/532 Module Top H8/532 LA-6747 M-H8/534R Module Top H8/534R,536R LA-7300 M-H8/534S Module H8/534S/536S LA-7301 M-H8/537 Module H8-537 LA-6737 A-H8/500-8 Module Bottom H8/520, 532, 534, 536, 537 LA-6730 M-H8/3003 Module Top H8/3003 LA-6731 M-H8/3048 Module Top H8/3048 LA-6732 A-H8/3003 Module Bottom H8/3003 Additional Options ICE Emulator for Hitachi H8/300 and H8/500 38

39 Order No. Code Text LA-9547 BGA256-CPU-ADAPTER CPU Test Adapter for BGA256 (MPC850) LA-7216 BGA357-CPU-ADAPTER CPU Test Adapter for BGA357 (MPC860) TO-1260 ET100-ETO-QF06 Emul. Adapter for TO socket ET100-QF06 TO-1250 ET100-ETO-QF49 Emul. Adapter for T0 socket ET100-QF49 TO-1255 ET100-ETO-SE Emul. Adapter for T0 socket ET100-SE 0.4mm YA-1031 ET100-EYA-QF06 Emul. Adapter for YAMAICHI socket ET100-QF06 YA-1091 ET100-EYA-QF49 Emul. Adapter for YAMAICHI socket ET100-QF49 ET-1030 ET100-SET-QF06 Surface Mountable Adapter for ET100 to QF06 ET-1092 ET100-SET-QF49 Surface Mountable Adapter for ET100-QF49 TO-1261 ET100-STO-QF06 Emul. Adapter TO-surface mount. ET100-QF06 TO-1251 ET100-STO-QF49 Emul. Adapter TO-surface mount. ET100-QF49 LA-1105 ET112-CPU-QF36 CPU Test Adapter for ET112-QF36 TO-1290 ET112-ETO-QF36 Emul. Adapter for TO socket ET112-QF36 YA-1101 ET112-EYA-QF36 Emul. Adapter for YAMAICHI socket ET112-QF36 ET-1100 ET112-SET-QF36 Surface Mountable Adapter for ET112-QF36 TO-1291 ET112-STO-QF36 Emul. Adapter TO-surface mount. ET112-QF36 YA-1142 ET120-EYA-QF56 Emul. Adapter for YAMAICHI socket ET120-QF56 TO-1240 ET64-ETO-QF29 Emul. Adapter for T0 socket ET64-QF29 YA-1121 ET64-EYA-QF29 Emul. Adapter for YAMAICHI socket ET064-QF29 ET-1122 ET64-SET-QF29 Surface Mountable Adapter for QF29 TO-1241 ET64-STO-QF29 Emul. Adapter TO-surface mount. ET64-QF29 TO-1275 ET80-ETO-QF14 Emul. Adapter for T0 socket ET080-QF14 TO-1270 ET80-ETO-QF47 Emul. Adapter for T0 socket ET080-QF47 YA-1131 ET80-EYA-QF14 Emul. Adapter for YAMAICHI socket ET080-QF14 YA-1081 ET80-EYA-QF47 Emul. Adapter for YAMAICHI socket ET080-QF47 ET-1130 ET80-SET-QF14 Surface Mountable Adapter for ET80-QF14 TO-1276 ET80-STO-QF14 Emul. Adapter TO-surface mount. ET080-QF14 TO-1271 ET80-STO-QF47 Emul. Adapter TO-surface mount. ET080-QF47 LA-7528 MON-H8 ROM Monitor for H8/300H and H8S family on ESI LA-6450 PA64 Port Analyzer LA-1926 PLCC-TEST-ADAPTER-68 PLCC Test Adapter 68 Pins LA-1927 PLCC-TEST-ADAPTER-84 PLCC Test Adapter 84 Pins ICE Emulator for Hitachi H8/300 and H8/500 39

40 Operation Voltage CPU Module Adapter Voltage Range H8/3006 LA-6957 LA V H8/3007 LA-6957 LA V H8/3060 LA-6957 LA V H8/3061 LA-6957 LA V H8/3062 LA-6957 LA V H8/3064 LA-6957 LA V H8/3065 LA-6957 LA V H8/3066 LA-6957 LA V H8/3067 LA-6957 LA V H8/ V H8/ V H8/3640 LA-6952 LA V H8/3641 LA-6952 LA V H8/3642 LA-6952 LA V H8/3643 LA-6952 LA V H8/3644 LA-6952 LA V ICE Emulator for Hitachi H8/300 and H8/500 40

41 Physical Dimensions Dimension LA-6739 LA-6738 LA-6737 A-H8/300-B A-H8/300-A A-H8/ PLCC-68 1 PLCC SIDE VIEW A1 30 PLCC PLCC (all dimensions refer to the PLCC sockets) ICE Emulator for Hitachi H8/300 and H8/500 41

42 Dimension LA-6798 A-H8/300-C SIDE VIEW 77 PIN 1 14 PIN TOP VIEW (all dimensions in mm) ICE Emulator for Hitachi H8/300 and H8/500 42

43 Dimension LA-6799 LA-6796 A-H8/300-D A-H8/300-E SIDE VIEW TOP VIEW (all dimensions in mm) ICE Emulator for Hitachi H8/300 and H8/500 43

44 Dimension LA-6730 LA-6731 M-H8/3003 M-H8/3048 cable (400) SIDE VIEW TOP VIEW (all dimensions in mm) LA-6956 A-H8/3001 ICE Emulator for Hitachi H8/300 and H8/500 44

45 Dimension LA-6957 LA-6958 M-H8/3067 A-H8/3067 TOP VIEW ET100QF ET100QF SIDE VIEW CABLE 275 ALL DIMENSIONS IN 1/1000 INCH ICE Emulator for Hitachi H8/300 and H8/500 45

46 Dimension LA-6732 A-H8/ SIDE VIEW TOP VIEW (all dimensions in mm) ICE Emulator for Hitachi H8/300 and H8/500 46

47 Dimension LA-6733 A-H8/3048/ SIDE VIEW TOP VIEW (all dimensions in mm) ICE Emulator for Hitachi H8/300 and H8/500 47

48 Dimension LA-6797 LA-6735 A-H8/3004/3005 A-H8/ SIDE VIEW TOP VIEW (all dimensions in mm) ICE Emulator for Hitachi H8/300 and H8/500 48

49 Dimension LA-6795 A-H8/ SIDE VIEW TOP VIEW (all dimensions in mm) LA-6940 LA-6941 M-H8/3827 A-H8/3827 TOP VIEW 3000 ET80QF ET80QF SIDE VIEW CABLE 275 ALL DIMENSIONS IN 1/1000 INCH ICE Emulator for Hitachi H8/300 and H8/500 49

50 Dimension LA-6741 LA-6742 LA-6743 LA-6744 LA-6792 LA-6793 LA-6794 LA-6951 LA-6745 LA-6746 LA-6747 LA-7300 LA-7301 M-H8/325 M-H8/329/338 M-H8/330 M-H8/350 M-H8/3334 M-H8/3297 M-H8/3437 M-H8/3217 M-H8/520 M-H8/532 M-H8/534R M-H8/534S M-H8/ cable (400) SIDE VIEW TOP VIEW (all dimensions in mm) ICE Emulator for Hitachi H8/300 and H8/500 50

51 Dimension LA-6953 LA-6955 M-H8/3814/3834 A-H8/3814/ cable (400) SIDE VIEW B A B A A B B A TOP VIEW (all dimensions in mm) A QF06 B QF49 LA-6734 M-H8/ cable (400) 120 SIDE VIEW ICE Emulator for Hitachi H8/300 and H8/500 51

52 Adapter Socket CPU ET100-QF06 H8/3006 H8/3007 H8/3060 H8/3061 H8/3062 H8/3064 H8/3065 H8/3066 H8/3067 H8/3812 H8/3813 H8/3833 H8/3834 H8/3835 H8/3836 H8/3837 Adapter ET-1030 ET100-SET-QF06 Surface Mountable Adapter for ET100 to QF06 SIDE VIEW :::::::::::::: :: :: :: :: :: :::::: :: :: :: :: :: :: :::::: :: :: :: :: :: :::::::::::::: TOP VIEW (all dimensions in mm) ICE Emulator for Hitachi H8/300 and H8/500 52

53 Socket CPU ET100-QF06 H8/3006 H8/3007 H8/3060 H8/3061 H8/3062 H8/3064 H8/3065 H8/3066 H8/3067 H8/3812 H8/3813 H8/3833 H8/3834 H8/3835 H8/3836 H8/3837 Adapter YA-1031 ET100-EYA-QF06 Emul. Adapter for YAMAICHI socket ET100-QF SIDE VIEW TOP VIEW (all dimensions in mm) ICE Emulator for Hitachi H8/300 and H8/500 53

54 Socket CPU ET100-QF49 H8/3006 H8/3007 H8/3060 H8/3061 H8/3062 H8/3064 H8/3065 H8/3066 H8/3067 H8/3434 H8/3434F H8/3436 H8/3437 H8/3812 H8/3813 H8/3833 H8/3834 H8/3835 H8/3836 H8/3837 Adapter YA-1091 ET100-EYA-QF49 Emul. Adapter for YAMAICHI socket ET100-QF SIDE VIEW TOP VIEW (all dimensions in mm) ICE Emulator for Hitachi H8/300 and H8/500 54

55 Socket CPU ET64-QF29 H8/3202 H8/3212 H8/3214 H8/3216 H8/3217 H8/322 H8/323 H8/324 H8/325 H8/3256 H8/3257 H8/3292 H8/3294 H8/3296 H8/3297 H8/3640 H8/3641 H8/3642 H8/3643 H8/3644 Adapter YA-1121 ET64-EYA-QF29 Emul. Adapter for YAMAICHI socket ET064-QF SIDE VIEW TOP VIEW (all dimensions in mm) ICE Emulator for Hitachi H8/300 and H8/500 55

56 Socket CPU ET80-QF14 H8/330 H8/3334Y H8/3334YF H8/3336Y H8/3337Y H8/336 H8/337 H8/338 H8/3394 H8/3396 H8/3397 Adapter YA-1131 ET80-EYA-QF14 Emul. Adapter for YAMAICHI socket ET080-QF SIDE VIEW TOP VIEW (all dimensions in mm) ICE Emulator for Hitachi H8/300 and H8/500 56

57 Socket CPU ET80-QF47 H8/3202 H8/3212 H8/3214 H8/3216 H8/3217 H8/3292 H8/3294 H8/3296 H8/3297 H8/3334Y H8/3334YF H8/3336Y H8/3337Y H8/3394 H8/3396 H8/3397 H8/3640 H8/3641 H8/3642 H8/3643 H8/3644 Adapter YA-1081 ET80-EYA-QF47 Emul. Adapter for YAMAICHI socket ET080-QF SIDE VIEW TARGET TOP VIEW (all dimensions in mm) ICE Emulator for Hitachi H8/300 and H8/500 57

Simulator for H8/300, H8/300H and H8S

Simulator for H8/300, H8/300H and H8S Simulator for H8/300, H8/300H and H8S TRACE32 Online Help TRACE32 Directory TRACE32 Index TRACE32 Documents... TRACE32 Instruction Set Simulators... Simulator for H8/300, H8/300H and H8S... 1 TRACE32 Simulator

More information

FIRE Emulator for H8S and H8/300H

FIRE Emulator for H8S and H8/300H FIRE Emulator for H8S and H8/300H TRACE32 Online Help TRACE32 Directory TRACE32 Index TRACE32 Documents... FIRE In-Circuit Emulator... FIRE Target Guides... FIRE Emulator for H8S and H8/300H... 1 WARNING...

More information

TRACE32 Documents... ICD In-Circuit Debugger... Processor Architecture Manuals... TriCore... TriCore Monitor... 1

TRACE32 Documents... ICD In-Circuit Debugger... Processor Architecture Manuals... TriCore... TriCore Monitor... 1 TriCore Monitor TRACE32 Online Help TRACE32 Directory TRACE32 Index TRACE32 Documents... ICD In-Circuit Debugger... Processor Architecture Manuals... TriCore... TriCore Monitor... 1 Brief Overview of Documents

More information

TRACE32 Documents... TRACE32 Instruction Set Simulators... Simulator for Z TRACE32 Simulator License Quick Start of the Simulator...

TRACE32 Documents... TRACE32 Instruction Set Simulators... Simulator for Z TRACE32 Simulator License Quick Start of the Simulator... Simulator for Z80+ TRACE32 Online Help TRACE32 Directory TRACE32 Index TRACE32 Documents... TRACE32 Instruction Set Simulators... Simulator for Z80+... 1 TRACE32 Simulator License... 3 Quick Start of the

More information

H8S and H8/300H Monitor

H8S and H8/300H Monitor H8S and H8/300H Monitor TRACE32 Online Help TRACE32 Directory TRACE32 Index TRACE32 Documents... ICD In-Circuit Debugger... Processor Architecture Manuals... H8S... H8S and H8/300H Monitor... 1 Brief Overview

More information

ICE Emulator for 68HC05 and 68HC08

ICE Emulator for 68HC05 and 68HC08 ICE Emulator for 68HC05 and 68HC08 TRACE32 Online Help TRACE32 Directory TRACE32 Index TRACE32 Documents... ICE In-Circuit Emulator... ICE Target Guides... ICE Emulator for 68HC05 and 68HC08... 1 Warning...

More information

TRACE32 Documents... ICD In-Circuit Debugger... Processor Architecture Manuals... NS NS32000 Monitor... 1

TRACE32 Documents... ICD In-Circuit Debugger... Processor Architecture Manuals... NS NS32000 Monitor... 1 NS32000 Monitor TRACE32 Online Help TRACE32 Directory TRACE32 Index TRACE32 Documents... ICD In-Circuit Debugger... Processor Architecture Manuals... NS32000... NS32000 Monitor... 1 Brief Overview of Documents

More information

ICE Emulator for 8051

ICE Emulator for 8051 ICE Emulator for 8051 TRACE32 Online Help TRACE32 Directory TRACE32 Index TRACE32 Documents... ICE In-Circuit Emulator... ICE Target Guides... ICE Emulator for 8051... 1 WARNING... 3 Quick Start... 4 Troubleshooting...

More information

Simulator for HC08/MSC08

Simulator for HC08/MSC08 Simulator for HC08/MSC08 TRACE32 Online Help TRACE32 Directory TRACE32 Index TRACE32 Documents... TRACE32 Instruction Set Simulators... Simulator for HC08/MSC08... 1 TRACE32 Simulator License... 3 Quick

More information

ICE Emulator for 68000

ICE Emulator for 68000 ICE Emulator for 68000 TRACE32 Online Help TRACE32 Directory TRACE32 Index TRACE32 Documents... ICE In-Circuit Emulator... ICE Target Guides... ICE Emulator for 68000... 1 Warning... 3 Quick Start... 4

More information

TRACE32 Documents... ICD In-Circuit Debugger... Processor Architecture Manuals... Z80... Z80 Monitor... 1

TRACE32 Documents... ICD In-Circuit Debugger... Processor Architecture Manuals... Z80... Z80 Monitor... 1 Z80 Monitor TRACE32 Online Help TRACE32 Directory TRACE32 Index TRACE32 Documents... ICD In-Circuit Debugger... Processor Architecture Manuals... Z80... Z80 Monitor... 1 Brief Overview of Documents for

More information

TRACE32 Documents... ICD In-Circuit Debugger... Processor Architecture Manuals... MCS08... MCS08 Debugger... 1

TRACE32 Documents... ICD In-Circuit Debugger... Processor Architecture Manuals... MCS08... MCS08 Debugger... 1 MCS08 Debugger TRACE32 Online Help TRACE32 Directory TRACE32 Index TRACE32 Documents... ICD In-Circuit Debugger... Processor Architecture Manuals... MCS08... MCS08 Debugger... 1 Brief Overview of Documents

More information

ICE Emulator for 68HC11

ICE Emulator for 68HC11 ICE Emulator for 68HC11 TRACE32 Online Help TRACE32 Directory TRACE32 Index TRACE32 Documents... ICE In-Circuit Emulator... ICE Target Guides... ICE Emulator for 68HC11... 1 WARNING... 4 Quick Start...

More information

TRACE32 Documents... TRACE32 Instruction Set Simulators... Simulator for MIPS TRACE32 Simulator License Quick Start of the Simulator...

TRACE32 Documents... TRACE32 Instruction Set Simulators... Simulator for MIPS TRACE32 Simulator License Quick Start of the Simulator... Simulator for MIPS TRACE32 Online Help TRACE32 Directory TRACE32 Index TRACE32 Documents... TRACE32 Instruction Set Simulators... Simulator for MIPS... 1 TRACE32 Simulator License... 4 Quick Start of the

More information

ICE Emulator for MC68000 and MC6830X

ICE Emulator for MC68000 and MC6830X ICE Emulator for MC68000 and MC6830X TRACE32 Online Help TRACE32 Directory TRACE32 Index TRACE32 Documents... ICE In-Circuit Emulator... ICE Target Guides... ICE Emulator for MC68000 and MC6830X... 1 Warning...

More information

ICE Emulator for the and 80196

ICE Emulator for the and 80196 ICE Emulator for the 80186 and 80196 TRACE32 Online Help TRACE32 Directory TRACE32 Index TRACE32 Documents... ICE In-Circuit Emulator... ICE Target Guides... ICE Emulator for the 80186 and 80196... 1 WArning...

More information

TRACE32 Documents... ICD In-Circuit Debugger... Processor Architecture Manuals... H8S... H8S/23x9 Debugger General Note... 3

TRACE32 Documents... ICD In-Circuit Debugger... Processor Architecture Manuals... H8S... H8S/23x9 Debugger General Note... 3 H8S/23x9 Debugger TRACE32 Online Help TRACE32 Directory TRACE32 Index TRACE32 Documents... ICD In-Circuit Debugger... Processor Architecture Manuals... H8S... H8S/23x9 Debugger... 1 General Note... 3 Brief

More information

ICE Emulator for 386/486

ICE Emulator for 386/486 ICE Emulator for 386/486 TRACE32 Online Help TRACE32 Directory TRACE32 Index TRACE32 Documents... ICE In-Circuit Emulator... ICE Target Guides... ICE Emulator for 386/486... 1 WARNING... 6 Quick Start...

More information

ICE Emulator for MC6833X

ICE Emulator for MC6833X ICE Emulator for MC6833X TRACE32 Online Help TRACE32 Directory TRACE32 Index TRACE32 Documents... ICE In-Circuit Emulator... ICE Target Guides... ICE Emulator for MC6833X... 1 WARNING... 6 Quick Start...

More information

Simulator for TriCore

Simulator for TriCore Simulator for TriCore TRACE32 Online Help TRACE32 Directory TRACE32 Index TRACE32 Documents... TRACE32 Instruction Set Simulators... Simulator for TriCore... 1 TRACE32 Simulator License... 4 Brief Overview

More information

TRACE32 Documents... ICD In-Circuit Debugger... Processor Architecture Manuals... XC XC800 Debugger... 1

TRACE32 Documents... ICD In-Circuit Debugger... Processor Architecture Manuals... XC XC800 Debugger... 1 XC800 Debugger TRACE32 Online Help TRACE32 Directory TRACE32 Index TRACE32 Documents... ICD In-Circuit Debugger... Processor Architecture Manuals... XC800... XC800 Debugger... 1 Introduction... 3 Brief

More information

Simulator for PowerPC

Simulator for PowerPC Simulator for PowerPC TRACE32 Online Help TRACE32 Directory TRACE32 Index TRACE32 Documents... TRACE32 Instruction Set Simulators... Simulator for PowerPC... 1 TRACE32 Simulator License... 4 Quick Start

More information

ICE Emulator for Motorola 68360/349

ICE Emulator for Motorola 68360/349 ICE Emulator for Motorola 68360/349 TRACE32 Online Help TRACE32 Directory TRACE32 Index TRACE32 Documents... ICE In-Circuit Emulator... ICE Target Guides... ICE Emulator for Motorola 68360/349... 1 WARNING...

More information

x386 and x486 Monitor

x386 and x486 Monitor x386 and x486 Monitor TRACE32 Online Help TRACE32 Directory TRACE32 Index TRACE32 Documents... ICD In-Circuit Debugger... Processor Architecture Manuals... x386 and x486... x386 and x486 Monitor... 1 Brief

More information

TRACE32 Documents... ICD In-Circuit Debugger... Processor Architecture Manuals... Blackfin... Blackfin Debugger General Note...

TRACE32 Documents... ICD In-Circuit Debugger... Processor Architecture Manuals... Blackfin... Blackfin Debugger General Note... Blackfin Debugger TRACE32 Online Help TRACE32 Directory TRACE32 Index TRACE32 Documents... ICD In-Circuit Debugger... Processor Architecture Manuals... Blackfin... Blackfin Debugger... 1 General Note...

More information

CEIBO FE-5111 Development System

CEIBO FE-5111 Development System CEIBO FE-5111 Development System Development System for Atmel W&M T89C5111 Microcontrollers FEATURES Emulates Atmel W&M T89C5111 4K Code Memory Real-Time Emulation and Trace Frequency up to 33MHz/5V ISP

More information

M32R Debugger and Trace

M32R Debugger and Trace M32R Debugger and Trace TRACE32 Online Help TRACE32 Directory TRACE32 Index TRACE32 Documents... ICD In-Circuit Debugger... Processor Architecture Manuals... M32R... M32R Debugger and Trace... 1 General

More information

TRACE32 Documents... ICD In-Circuit Debugger... Processor Architecture Manuals... C166 Family... C166 Family Trace... 1

TRACE32 Documents... ICD In-Circuit Debugger... Processor Architecture Manuals... C166 Family... C166 Family Trace... 1 C166 Family Trace TRACE32 Online Help TRACE32 Directory TRACE32 Index TRACE32 Documents... ICD In-Circuit Debugger... Processor Architecture Manuals... C166 Family... C166 Family Trace... 1 Installation...

More information

ICE Emulator for MC68020/30

ICE Emulator for MC68020/30 ICE Emulator for MC68020/30 TRACE32 Online Help TRACE32 Directory TRACE32 Index TRACE32 Documents... ICE In-Circuit Emulator... ICE Target Guides... ICE Emulator for MC68020/30... 1 Warning... 4 Quick

More information

CEIBO FE-51RD2 Development System

CEIBO FE-51RD2 Development System CEIBO FE-51RD2 Development System Development System for Atmel AT89C51RD2 Microcontrollers FEATURES Emulates Atmel AT89C51RD2 60K Code Memory Real-Time Emulation Frequency up to 40MHz / 3V, 5V ISP and

More information

EEE3410 Microcontroller Applications Department of Electrical Engineering Lecture 4 The 8051 Architecture

EEE3410 Microcontroller Applications Department of Electrical Engineering Lecture 4 The 8051 Architecture Department of Electrical Engineering Lecture 4 The 8051 Architecture 1 In this Lecture Overview General physical & operational features Block diagram Pin assignments Logic symbol Hardware description Pin

More information

Simulator for 68K/ColdFire

Simulator for 68K/ColdFire Simulator for 68K/ColdFire TRACE32 Online Help TRACE32 Directory TRACE32 Index TRACE32 Documents... TRACE32 Instruction Set Simulators... Simulator for 68K/ColdFire... 1 TRACE32 Simulator License... 4

More information

8051 Microcontroller

8051 Microcontroller 8051 Microcontroller The 8051, Motorola and PIC families are the 3 leading sellers in the microcontroller market. The 8051 microcontroller was originally developed by Intel in the late 1970 s. Today many

More information

DS-XA In-Circuit Emulator

DS-XA In-Circuit Emulator DS-XA In-Circuit Emulator In-Circuit Emulator for Philips XA Microcontrollers FEATURES Emulates XA Derivatives 2MByte Code and Data Memory Memory With Mapping Capabilities Real-Time Trace Frequency Range

More information

EPROM/FLASH Simulator

EPROM/FLASH Simulator EPROM/FLASH Simulator TRACE32 Online Help TRACE32 Directory TRACE32 Index TRACE32 Documents... EPROM/FLASH Simulator... 1 Introduction... 4 Basics 4 Warning 4 Configuration... 5 ICD Configuration for ROM

More information

Simulator for HC12/MCS12

Simulator for HC12/MCS12 Simulator for HC12/MCS12 TRACE32 Online Help TRACE32 Directory TRACE32 Index TRACE32 Documents... TRACE32 Instruction Set Simulators... Simulator for HC12/MCS12... 1 TRACE32 Simulator License... 4 Quick

More information

1. Attempt any three of the following: 15

1. Attempt any three of the following: 15 (2½ hours) Total Marks: 75 N. B.: (1) All questions are compulsory. (2) Make suitable assumptions wherever necessary and state the assumptions made. (3) Answers to the same question must be written together.

More information

CMS-8GP32. A Motorola MC68HC908GP32 Microcontroller Board. xiom anufacturing

CMS-8GP32. A Motorola MC68HC908GP32 Microcontroller Board. xiom anufacturing CMS-8GP32 A Motorola MC68HC908GP32 Microcontroller Board xiom anufacturing 2000 717 Lingco Dr., Suite 209 Richardson, TX 75081 (972) 994-9676 FAX (972) 994-9170 email: Gary@axman.com web: http://www.axman.com

More information

FIRE Emulator for HC12/MCS12

FIRE Emulator for HC12/MCS12 FIRE Emulator for HC12/MCS12 TRACE32 Online Help TRACE32 Directory TRACE32 Index TRACE32 Documents... FIRE In-Circuit Emulator... FIRE Target Guides... FIRE Emulator for HC12/MCS12... 1 Warning... 4 Quick

More information

General Commands Reference Guide M

General Commands Reference Guide M General Commands Reference Guide M TRACE32 Online Help TRACE32 Directory TRACE32 Index TRACE32 Documents... General Commands... General Commands Reference Guide M... 1 History... 7 MACHINE... 8 MACHINE.select

More information

CEIBO FE-W7 Development System

CEIBO FE-W7 Development System CEIBO FE-W7 Development System Development System for Winbond W7xxxx Microcontrollers FEATURES Emulates Winbond W77xxx or W78xxx Microcontrollers 125K Code Memory Real-Time Emulation Frequency up to fmax

More information

Renesas 78K/78K0R/RL78 Family In-Circuit Emulation

Renesas 78K/78K0R/RL78 Family In-Circuit Emulation _ Technical Notes V9.12.225 Renesas 78K/78K0R/RL78 Family In-Circuit Emulation This document is intended to be used together with the CPU reference manual provided by the silicon vendor. This document

More information

_ V Intel 8051 Family In-Circuit Emulation. Contents. Technical Notes

_ V Intel 8051 Family In-Circuit Emulation. Contents. Technical Notes _ V9.12. 225 Technical Notes Intel 8051 Family In-Circuit Emulation This document is intended to be used together with the CPU reference manual provided by the silicon vendor. This document assumes knowledge

More information

1 MALP ( ) Unit-1. (1) Draw and explain the internal architecture of 8085.

1 MALP ( ) Unit-1. (1) Draw and explain the internal architecture of 8085. (1) Draw and explain the internal architecture of 8085. The architecture of 8085 Microprocessor is shown in figure given below. The internal architecture of 8085 includes following section ALU-Arithmetic

More information

TRACE32 Documents... TRACE32 Instruction Set Simulators... Simulator for ARC... 1

TRACE32 Documents... TRACE32 Instruction Set Simulators... Simulator for ARC... 1 Simulator for ARC TRACE32 Online Help TRACE32 Directory TRACE32 Index TRACE32 Documents... TRACE32 Instruction Set Simulators... Simulator for ARC... 1 Introduction... 3 Supported ARC Cores 3 Brief Overview

More information

Three criteria in Choosing a Microcontroller

Three criteria in Choosing a Microcontroller The 8051 Microcontroller architecture Contents: Introduction Block Diagram and Pin Description of the 8051 Registers Some Simple Instructions Structure of Assembly language and Running an 8051 program

More information

EB-51 Low-Cost Emulator

EB-51 Low-Cost Emulator EB-51 Low-Cost Emulator Development Tool for 80C51 Microcontrollers FEATURES Emulates 80C51 Microcontrollers and Derivatives Real-Time Operation up to 40 MHz 3.3V or 5V Voltage Operation Source-Level Debugger

More information

TRACE32 Documents... ICD In-Circuit Debugger... Processor Architecture Manuals XC... R8051XC Debugger General Note...

TRACE32 Documents... ICD In-Circuit Debugger... Processor Architecture Manuals XC... R8051XC Debugger General Note... R8051XC Debugger TRACE32 Online Help TRACE32 Directory TRACE32 Index TRACE32 Documents... ICD In-Circuit Debugger... Processor Architecture Manuals... 8051XC... R8051XC Debugger... 1 General Note... 4

More information

POD 51EH C517A 24 XH0 XH1 XH2 XH3 XH4 XH5 XH6 XH7 XL7 XL6 XL5 XL4 XL3 XL2 XL1 XL0 PE EA ALE PSEN JP1. Figure 1. POD 51EH C517A 24

POD 51EH C517A 24 XH0 XH1 XH2 XH3 XH4 XH5 XH6 XH7 XL7 XL6 XL5 XL4 XL3 XL2 XL1 XL0 PE EA ALE PSEN JP1. Figure 1. POD 51EH C517A 24 6 7.. P P POD 5EH C57A 4 RST R PWD Y IDL Y EML G MON Y MERR R JP T JP7 ANB FLF EMUL XH0 XH XH XH XH4 XH5 XH6 XH7 T XS MCU XS T 7 6 5 4 0 P P P6 P7 JP0 XL7 XL6 XL5 XL4 XL XL XL XL0 PE EA ALE PSEN JP P5

More information

POD 51EH C541U 12 EA ALE PSEN XH0 XH1 XH2 XH3 XH4 XH5 XH6 XH7 XL7 XL6 XL5 XL4 XL3 XL2 XL1 XL0. Figure 1. POD 51EH C541U 12

POD 51EH C541U 12 EA ALE PSEN XH0 XH1 XH2 XH3 XH4 XH5 XH6 XH7 XL7 XL6 XL5 XL4 XL3 XL2 XL1 XL0. Figure 1. POD 51EH C541U 12 6 7.. P P POD 5EH C54U RST R PWD Y IDL Y EML G MON Y MERR R JP JP T JP7 ANB FLF EMUL XH0 XH XH XH XH4 XH5 XH6 XH7 EA ALE PSEN T XS MCU XS T 7 6 5 4 0 D P P P D M JP0 XL7 XL6 XL5 XL4 XL XL XL XL0 FULL USL

More information

System Reset / C167. Figure 17-1 External Reset Circuitry. Semiconductor Group 17-1

System Reset / C167. Figure 17-1 External Reset Circuitry. Semiconductor Group 17-1 17 System Reset The internal system reset function provides initialization of the C167 into a defined default state and is invoked either by asserting a hardware reset signal on pin RSTIN (Hardware Reset

More information

TEMIC 51T (Temic) EMULATION

TEMIC 51T (Temic) EMULATION Note: To use with frequencies above 40Mhz it will be required to use an emulator board that has been specially modified to obtain high frequency operation and will work only with the POD-51Temic. The EPROM

More information

E8a Emulator Additional Document for User's Manual R0E00008AKCE00EP2

E8a Emulator Additional Document for User's Manual R0E00008AKCE00EP2 REJ10J1644-0100 E8a Emulator Additional Document for User's Manual R0E00008AKCE00EP2 Renesas Microcomputer Development Environment System M16C Family / R8C/Tiny Series Notes on Connecting the R8C/10, R8C/11,

More information

_ V Intel 8085 Family In-Circuit Emulation. Contents. Technical Notes

_ V Intel 8085 Family In-Circuit Emulation. Contents. Technical Notes _ V9.12. 225 Technical Notes Intel 8085 Family In-Circuit Emulation This document is intended to be used together with the CPU reference manual provided by the silicon vendor. This document assumes knowledge

More information

TRACE32 Documents... ICD In-Circuit Debugger... Processor Architecture Manuals... MMDSP... MMDSP Debugger General Note... 3

TRACE32 Documents... ICD In-Circuit Debugger... Processor Architecture Manuals... MMDSP... MMDSP Debugger General Note... 3 MMDSP Debugger TRACE32 Online Help TRACE32 Directory TRACE32 Index TRACE32 Documents... ICD In-Circuit Debugger... Processor Architecture Manuals... MMDSP... MMDSP Debugger... 1 General Note... 3 Brief

More information

Preface. * ZTAT (Zero Turn-Around Time) is a trademark of Hitachi, Ltd.

Preface. * ZTAT (Zero Turn-Around Time) is a trademark of Hitachi, Ltd. OMC 932723248 Hitachi Single-Chip Microcomputer H8/534, H8/536 HD6475348R, HD6435348R HD6475368R, HD6435368R HD6475348S, HD6435348S HD6475368S, HD6435368S Hardware Manual ADE-602-038B Preface The H8/534

More information

DS-251 In-Circuit Emulator

DS-251 In-Circuit Emulator DS-251 In-Circuit Emulator In-Circuit Emulator for 251 Microcontrollers FEATURES Real-Time and Transparent In-Circuit Emulator for 251s Standard 256K Emulation Memory Real-Time Trace up to 128K Frames

More information

E8a Emulator Additional Document for User's Manual R0E00008AKCE00EP9

E8a Emulator Additional Document for User's Manual R0E00008AKCE00EP9 REJ10J1646-0100 E8a Emulator Additional Document for User's Manual R0E00008AKCE00EP9 Renesas Microcomputer Development Environment System M16C Family / R8C/Tiny Series Notes on Connecting the R8C/18, R8C/19,

More information

Control Unit: The control unit provides the necessary timing and control Microprocessor resembles a CPU exactly.

Control Unit: The control unit provides the necessary timing and control Microprocessor resembles a CPU exactly. Unit I 8085 and 8086 PROCESSOR Introduction to microprocessor A microprocessor is a clock-driven semiconductor device consisting of electronic logic circuits manufactured by using either a large-scale

More information

All information, including contact information, is available on our web site Feel free also to explore our alternative products.

All information, including contact information, is available on our web site   Feel free also to explore our alternative products. _ V1.1 POD Hardware Reference Intel 80186 EA POD POD rev. D Ordering code IC20011-1 Thank you for purchasing this product from isystem. This product has been carefully crafted to satisfy your needs. Should

More information

Module 2. Embedded Processors and Memory. Version 2 EE IIT, Kharagpur 1

Module 2. Embedded Processors and Memory. Version 2 EE IIT, Kharagpur 1 Module 2 Embedded Processors and Memory Version 2 EE IIT, Kharagpur 1 Lesson 11 Embedded Processors - II Version 2 EE IIT, Kharagpur 2 Signals of a Typical Microcontroller In this lesson the student will

More information

DS-51 Development System

DS-51 Development System DS-51 Development System User's Manual COPYRIGHT BY CEIBO Rev. 05/14 - V1.1 POWER UP SEQUENCE Vcc from the emulator is disconnected in the emulator plug. For example, Pin 40 for the DIP package is disconnected

More information

ICE/FIRE Analyzer Programming Dialog

ICE/FIRE Analyzer Programming Dialog ICE/FIRE Analyzer Programming Dialog TRACE32 Online Help TRACE32 Directory TRACE32 Index TRACE32 Documents... FIRE In-Circuit Emulator... ICE Analyzer System... FIRE Analyzer Programming... ICE/FIRE Analyzer

More information

2. List the five interrupt pins available in INTR, TRAP, RST 7.5, RST 6.5, RST 5.5.

2. List the five interrupt pins available in INTR, TRAP, RST 7.5, RST 6.5, RST 5.5. DHANALAKSHMI COLLEGE OF ENGINEERING DEPARTMENT OF ELECTRICAL AND ELECTRONICS ENGINEERING EE6502- MICROPROCESSORS AND MICROCONTROLLERS UNIT I: 8085 PROCESSOR PART A 1. What is the need for ALE signal in

More information

Intel 8051 Family Standard PODs

Intel 8051 Family Standard PODs Intel 8051 Family Standard PODs All 8051 family PODs are 8-bit PODs that can be used on ic181, ic1000 and the PowerEmulator unit with the exception of a few PODs, that can not be used on the ic181 unit.

More information

The Microcontroller. Lecture Set 3. Major Microcontroller Families. Example Microcontroller Families Cont. Example Microcontroller Families

The Microcontroller. Lecture Set 3. Major Microcontroller Families. Example Microcontroller Families Cont. Example Microcontroller Families The Microcontroller Lecture Set 3 Architecture of the 8051 Microcontroller Microcontrollers can be considered as self-contained systems with a processor, memory and I/O ports. In most cases, all that is

More information

How Nohau supports the Philips 8051MX Microcontroller

How Nohau supports the Philips 8051MX Microcontroller How Nohau supports the Philips 8051MX Microcontroller There are two options for the emulation of the 8xC51MB2 and 8xC51MC2 micros. One is the emulator with 768k of emulation memory that has been configured

More information

Understanding the basic building blocks of a microcontroller device in general. Knows the terminologies like embedded and external memory devices,

Understanding the basic building blocks of a microcontroller device in general. Knows the terminologies like embedded and external memory devices, Understanding the basic building blocks of a microcontroller device in general. Knows the terminologies like embedded and external memory devices, CISC and RISC processors etc. Knows the architecture and

More information

POD 51EH C505L XH0 XH1 XH2 XH3 XH4 XH5 XH6 XH7 XL7 XL6 XL5 XL4 XL3 XL2 XL1 XL0. Figure 1. POD 51EH C505L 20

POD 51EH C505L XH0 XH1 XH2 XH3 XH4 XH5 XH6 XH7 XL7 XL6 XL5 XL4 XL3 XL2 XL1 XL0. Figure 1. POD 51EH C505L 20 6 7.. P P POD 5EH C505L 0 RST R PWD Y IDL Y EML G MON Y MERR R JP T JP0 JP7 ANB FLF EMUL XH0 XH XH XH XH4 XH5 XH6 XH7 XL7 XL6 XL5 XL4 XL XL XL XL0 T XS GSL T MCU RSL T XS T P P4 5 4 0 7 6 5 4 0 NOHAU Corporation

More information

CEIBO FE-5131A Development System

CEIBO FE-5131A Development System CEIBO FE-5131A Development System Development System for Atmel AT89C5131A Microcontrollers FEATURES Emulates AT89C5131/AT89C5131A with 6/12 Clocks/Cycle 31K Code Memory Software Trace Real-Time Emulation

More information

8051 Microcontroller

8051 Microcontroller 8051 Microcontroller 1 Salient Features (1). 8 bit microcontroller originally developed by Intel in 1980. (2). High-performance CMOS Technology. (3). Contains Total 40 pins. (4). Address bus is of 16 bit

More information

TRACE32 Debugger Getting Started... ICD Tutorial About the Tutorial... 2

TRACE32 Debugger Getting Started... ICD Tutorial About the Tutorial... 2 ICD Tutorial TRACE32 Online Help TRACE32 Directory TRACE32 Index TRACE32 Debugger Getting Started... ICD Tutorial... 1 About the Tutorial... 2 Working with the Debugger... 3 Set up the Program Environment

More information

Am186ER/Am188ER AMD continues 16-bit innovation

Am186ER/Am188ER AMD continues 16-bit innovation Am186ER/Am188ER AMD continues 16-bit innovation 386-Class Performance, Enhanced System Integration, and Built-in SRAM Am186ER and Am188ER Am186 System Evolution 80C186 Based 3.37 MIP System Am186EM Based

More information

TRACE32 Documents... ICE In-Circuit Emulator... ICE User's Guide... 1

TRACE32 Documents... ICE In-Circuit Emulator... ICE User's Guide... 1 ICE User s Guide TRACE32 Online Help TRACE32 Directory TRACE32 Index TRACE32 Documents... ICE In-Circuit Emulator... ICE User's Guide... 1 Concept... 5 Modules 5 SCU - System Controller Unit 6 ECU - Emulation

More information

TRACE32 Training... Training ICE Emulator... Training ICE Basics... 1

TRACE32 Training... Training ICE Emulator... Training ICE Basics... 1 Training ICE Basics TRACE32 Online Help TRACE32 Directory TRACE32 Index TRACE32 Training... Training ICE Emulator... Training ICE Basics... 1 System Architecture TRACE32-ICE... 4 Module Structure 4 SCU32

More information

Moodle WILLINGDON COLLEGE SANGLI (B. SC.-II) Digital Electronics

Moodle WILLINGDON COLLEGE SANGLI (B. SC.-II) Digital Electronics Moodle 4 WILLINGDON COLLEGE SANGLI (B. SC.-II) Digital Electronics Advanced Microprocessors and Introduction to Microcontroller Moodle developed By Dr. S. R. Kumbhar Department of Electronics Willingdon

More information

The purpose of this course is to provide an introduction to the RL78's flash features and archectecture including security features, code and data

The purpose of this course is to provide an introduction to the RL78's flash features and archectecture including security features, code and data 1 The purpose of this course is to provide an introduction to the RL78's flash features and archectecture including security features, code and data flash organization as well as self and external programming

More information

ET2640 Microprocessors

ET2640 Microprocessors ET2640 Microprocessors Unit -2 Processor Programming Concepts Basic Control Instructor : Stan Kong Email : skong@itt-tech.edu Figure 2 4 Bits of the PSW Register 8051 REGISTER BANKS AND STACK 80 BYTES

More information

3. The MC6802 MICROPROCESSOR

3. The MC6802 MICROPROCESSOR 3. The MC6802 MICROPROCESSOR This chapter provides hardware detail on the Motorola MC6802 microprocessor to enable the reader to use of this microprocessor. It is important to learn the operation and interfacing

More information

8051 Microcontrollers

8051 Microcontrollers 8051 Microcontrollers Richa Upadhyay Prabhu NMIMS s MPSTME richa.upadhyay@nmims.edu March 8, 2016 Controller vs Processor Controller vs Processor Introduction to 8051 Micro-controller In 1981,Intel corporation

More information

8-bit Microcontroller with 8K Bytes In-System Programmable Flash AT89S52

8-bit Microcontroller with 8K Bytes In-System Programmable Flash AT89S52 Features Compatible with MCS -51 Products 8K Bytes of In-System Programmable (ISP) Flash Memory Endurance: 10,000 Write/Erase Cycles 4.0V to 5.5V Operating Range Fully Static Operation: 0 Hz to 33 MHz

More information

ICE Emulator for C166/ST10

ICE Emulator for C166/ST10 ICE Emulator for C166/ST10 TRACE32 Online Help TRACE32 Directory TRACE32 Index TRACE32 Documents... ICE In-Circuit Emulator... ICE Target Guides... ICE Emulator for C166/ST10... ICE Emulator for C166/ST10...

More information

CHAPTER 1 MICROCOMPUTER SYSTEMS. 1.1 Introduction. 1.2 Microcontroller Evolution

CHAPTER 1 MICROCOMPUTER SYSTEMS. 1.1 Introduction. 1.2 Microcontroller Evolution CHAPTER 1 MICROCOMPUTER SYSTEMS 1.1 Introduction The term microcomputer is used to describe a system that includes a microprocessor, program memory, data memory, and an input/output (I/O). Some microcomputer

More information

IN-CIRCUIT DEBUG (ICD) USER GUIDE

IN-CIRCUIT DEBUG (ICD) USER GUIDE April 2003 IN-CIRCUIT DEBUG (ICD) USER GUIDE The Western Design Center, Inc., 2002 WDC TABLE OF CONTENTS 1. Introduction...3 2. Debug Port...4 3. The ICD Registers...4 4. ICDCTRL Register Bit Definitions...5

More information

EMULATOR SETUP MB BIT COMPACT-ICE

EMULATOR SETUP MB BIT COMPACT-ICE Fujitsu Microelectronics Europe Application Note MCU-AN-390077-E-V11 F²MC-16L/LX FAMILY 16-BIT MICROCONTROLLER MB903XX/4XX/5XX/6XX EMULATOR SETUP MB2147-05 16BIT COMPACT-ICE APPLICATION NOTE Revision History

More information

SH67K93/90 EVB ROM H ROM L. Application Notices for SH67K93/90 EVB SH69V93 SH67K93/90 EVB J2 GND. Port & CID interface Tele Line Plug.

SH67K93/90 EVB ROM H ROM L. Application Notices for SH67K93/90 EVB SH69V93 SH67K93/90 EVB J2 GND. Port & CID interface Tele Line Plug. Application Notices for The (Evaluation Board) is used to evaluate the SH67K93/90 chip's functions for the development application program. It contains of a SH69V93 chip to evaluate the functions of SH67K93/90

More information

Contents. Join the Technical Community Today!

Contents. Join the Technical Community Today! Contents CHAPTER 1: INTRODUCTION... 5 1. WELCOME... 5 1.2 PS 8051 BOARD OVERVIEW... 6 1.3 PS 8051 SPECIFICATIONS... 7 CHAPTER 2: SYSTEM DESCRIPTION... 9 2.1 HARDWARE... 9 2.2 MAPPING OF DEVICES... 11 2.2.1

More information

RTE-V850/SA1-IE. Hardware User's Manual. RealTimeEvaluator

RTE-V850/SA1-IE. Hardware User's Manual. RealTimeEvaluator RealTimeEvaluator CONTENTS 1. INTRODUCTION...2 2. MAIN FEATURES...3 3. HARDWARE SPECIFICATION...4 4. SYSTEM CONFIGURATION...5 5. INSTALLATION...6 6. SETTING THE DIP SWITCH...7 7. DISPLAY LED...7 8. CONNECTING

More information

_ V1.3. Motorola 68HC11 AE/AS POD rev. F. POD Hardware Reference

_ V1.3. Motorola 68HC11 AE/AS POD rev. F. POD Hardware Reference _ V1.3 POD Hardware Reference Motorola 68HC11 AE/AS POD rev. F Ordering code IC81049 Thank you for purchasing this product from isystem. This product has been carefully crafted to satisfy your needs. Should

More information

OMEN Alpha / issue 4. Technical Documentation

OMEN Alpha / issue 4. Technical Documentation OMEN Alpha / issue 4 Technical Documentation OMEN Computers - - - https://github.com/osmibity - - - Page: 1 INTRODUCTION == The OMEN Alpha computer kit is a low-cost computer trainer, based on the Intel

More information

Evaluation Board. For NXP - Philips LPC All rights reserved

Evaluation Board. For NXP - Philips LPC All rights reserved Evaluation Board For NXP - Philips LPC2106 2003 All rights reserved ICE Technology ARM Evaluation Board - NXP LPC2106 2 (13) Contents 1 INTRODUCTION... 5 Important Notes 5 Memory Configuration 5 Remap

More information

The Atmel ATmega168A Microcontroller

The Atmel ATmega168A Microcontroller Ming Hsieh Department of Electrical Engineering EE 459Lx - Embedded Systems Design Laboratory The Atmel ATmega168A Microcontroller by Allan G. Weber 1 Introduction The Atmel ATmega168A is one member of

More information

E3940 Microprocessor Systems Laboratory. Introduction to the Z80

E3940 Microprocessor Systems Laboratory. Introduction to the Z80 E3940 Microprocessor Systems Laboratory Introduction to the Z80 Andrew T. Campbell comet.columbia.edu/~campbell campbell@comet.columbia.edu E3940 Microprocessor Systems Laboratory Page 1 Z80 Laboratory

More information

DS-51 Microprocessor Development System

DS-51 Microprocessor Development System DS-51 Microprocessor Development System In-Circuit Emulator for 8051 Family of Microcontrollers FEATURES Real-Time and Transparent In-Circuit Emulator Supports Most of the 8051 Derivatives Emulates 1.5V

More information

MICROCONTROLLER AND PLC LAB-436 SEMESTER-5

MICROCONTROLLER AND PLC LAB-436 SEMESTER-5 MICROCONTROLLER AND PLC LAB-436 SEMESTER-5 Exp:1 STUDY OF MICROCONTROLLER 8051 To study the microcontroller and familiarize the 8051microcontroller kit Theory:- A Microcontroller consists of a powerful

More information

NEW CEIBO DEBUGGER. Menus and Commands

NEW CEIBO DEBUGGER. Menus and Commands NEW CEIBO DEBUGGER Menus and Commands Ceibo Debugger Menus and Commands D.1. Introduction CEIBO DEBUGGER is the latest software available from Ceibo and can be used with most of Ceibo emulators. You will

More information

Changing the Embedded World TM. Module 3: Getting Started Debugging

Changing the Embedded World TM. Module 3: Getting Started Debugging Changing the Embedded World TM Module 3: Getting Started Debugging Module Objectives: Section 1: Introduce Debugging Techniques Section 2: PSoC In-Circuit Emulator (ICE) Section 3: Hands on Debugging a

More information

Chapter 1 Microprocessor architecture ECE 3120 Dr. Mohamed Mahmoud http://iweb.tntech.edu/mmahmoud/ mmahmoud@tntech.edu Outline 1.1 Computer hardware organization 1.1.1 Number System 1.1.2 Computer hardware

More information

The Atmel ATmega328P Microcontroller

The Atmel ATmega328P Microcontroller Ming Hsieh Department of Electrical Engineering EE 459Lx - Embedded Systems Design Laboratory 1 Introduction The Atmel ATmega328P Microcontroller by Allan G. Weber This document is a short introduction

More information

F²MC-8FX FAMILY MB95100 SERIES EMULATOR HW SETUP 8-BIT MICROCONTROLLER APPLICATION NOTE. Fujitsu Microelectronics Europe Application Note

F²MC-8FX FAMILY MB95100 SERIES EMULATOR HW SETUP 8-BIT MICROCONTROLLER APPLICATION NOTE. Fujitsu Microelectronics Europe Application Note Fujitsu Microelectronics Europe Application Note MCU-AN-395002-E-V10 F²MC-8FX FAMILY 8-BIT MICROCONTROLLER MB95100 SERIES EMULATOR HW SETUP APPLICATION NOTE Revision History Revision History Date 2004-10-12

More information