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

Size: px
Start display at page:

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

Transcription

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... 3 Packing List 3 TRACE32 Software and Hardware Installation 3 Configuration and Target Adaption 4 Adapter-Configuration for C166 CBC Family (TCON) 5 Function... 6 Quick Start 6 SYStem Window 6 Trace Structure 9 Trace Features 9 Selective Tracing 10 Background information 11 TriggerOnchip Window Setup 12 Map Window Setup 14 Example 14 Commands MAP.MONITOR 17 PER.view 17 SYStem.Option 18 TrOnchip 18 FAQ Technical Data Operation Voltage 20 Operation Frequency 20 Dimensions 21 Adapter 25 Support C166 Family Trace 1

2 Available Tools 26 Compilers 27 Target Operating Systems 27 3rd Party Tool Integrations 28 Products Product Information 29 Order Information 30 C166 Family Trace 2

3 C166 Family Trace Version 06-Nov-2017 Installation Packing List The complete TRACE32-ICD trace extension consist of the following parts: 1. A RISC TRACE module 2. C166 family preprocessor 3. Three flat band cables with different length and blue plugs 4. A short flat band cable with black plugs 5. A cpu specific adapter board 6. This documentation Please check if all parts are available! TRACE32 Software and Hardware Installation The TRACE32-ICD software includes also the TRACE32-ICD Trace support. No extra software installation is required to run the TRACE32-ICD Trace. The RISC TRACE box has to be added to the PODBUS. The preprocessor is usually connected to the RISC TRACE module with the blue-pluged flat band cables. The correct order shows the following picture: C B A ABC The flatband cables have different length. The shortest is used for connecting plug A, the middle for plug B and the longest for plug C. C166 Family Trace 3

4 Configuration and Target Adaption There are two ways to adapt the preprocessor for the C166 family to the target: 1. The black 80pin ICE connector is located on the top of the preprocessor. Using the black-pluged flat band cable the target adpation is done like shown in the picture below: Flat cable Preprocessor Target With this connection the address and data lines can be traced. 2. The target adaption using the CPU specific adapter board looks as shown in the picture below: There are three different adapters available: - EGOLD (TCON160) - EGOLD+ (TCON200) - C161, C165 and C167 (ET80, ET100, ET144) With this connection the address and data lines plus Port 2 and Port 3 can be traced. The pinout is similar to the pinout of each CPU. That means pin 1 of EGOLD-TCON is at the same position as pin 1 of the CPU. Dimension and technical data are described in Technical Data. C166 Family Trace 4

5 Adapter-Configuration for C166 CBC Family (TCON) The C166 CBC-family (EGOLD, EGOLD+) supports different sources for the address lines A23 to A21. To set the right configuration DIP-switches are implemented on the TCON adapters. If no selection is made all lines are pulled down via 10K resistors (trace side only). That means, the trace assumes that the address line is 0. Set the switches corresponding to your target: CPU TRACE CLKSXM CC06I0 DSPOUT0 DSPOUT1 PDOUT TOUT12 VCCEXT N/C N/C A21 A22 A23 ALE After removing the protection foil the selection is possible with a small screwdriver O F F Insert the adapter into your target carefully. Check where is pin 1 of your CPU. First clip the adapter on the preprocessor then place it on your target. C166 Family Trace 5

6 Function Quick Start In order to work correctly, the TRACE32-ICD Trace needs the information on how the bus interface to the memory you want to trace is configured. This configuration is done by your software. SYStem Window The SYStem window contains also settings for the ICD Trace. It can be opened using the System Setting command in the CPU menu or by using the SYStem command. CS configuration Bus configuration B::SYStem Mode MemAccess Option ADDRSELx BUSCONx Down CPU BOOTSTRAP 0x0 0x0 NoDebug Denied PERSTOP 0x0 0x0 Go CpuAccess DUALPORT 0x0 0x0 Attach Enable IMASKASM 0x0 0x0 Up Denied IMASKHLL 0x0 0x0 MONBASE BusType SYSCON CPU 0x3FFE0 MUX8 0x0 PMB2850 BrkVector SGT 0x8 OFF ResVector CS 0x0 0 Bus type Number of CS lines Segment size C166 Family Trace 6

7 BUSCON x SYSCON ADDRSEL x BUSTYPE CS SGT The values for BUSCON x have to correspond to the BUSCONx register of your CPU. The value can also be copied from the BUSCONx register in the PER window after your software has finished its initialisation. The value for SYSCON have to correspond to the SYSCON register of your CPU. The value can also be copied from the SYSCON register in the PER window after your software has finished its initialisation. The values for ADDRSELx have to correspond to the ADDRSELx register of your CPU. ADDRSEL0 functioned as ADDRSELx, but this value is not supported by the cpu. The value is needed in case of cs0 base address<>0. The value can also be copied from the SYSCON register in the PER window after your software has finished its initialisation. Specifices the bustype for the memory which will be traced. Defines the max number of used CS lines. Unused lines has to be pulled up! Defines the number of address lines which are used. All lines have to be driven within this segment! It is recommended to use a PRACTICE script (*.cmm) to set up TRACE32-ICD trace to guarantee a proper start-up sequence. We assume that such a PRACTICE script exists already to start up the In-Circuit Debugger TRACE32-ICD. So please add the following lines to this configuration file. C166 Family Trace 7

8 This is a example to start up the EGOLD board. ; MAIN SETUP SYStem.RESet SYStem.CPU PMB2850 SYS.O MONBASE 3ffe0 SYStem.Up ; Initialize system ; Select CPU type ; Monitor base address ; Start debugger Target Setup d.s 0ffd6 %w 8800 ; ; PROGRAM SETUP D.LOAD.I taskcc.abs R.S pc CSTART_TASK ; TRACE SETUP SYS.O BUSTYPE NOMUX16 SYS.O ADDRSEL SYS.O ADDRSEL1 9 SYS.O SGT 2M SYS.O CS 2 SYS.O BUSCON0 049e SYS.O BUSCON1 04BF SYS.O SYSCON 1484 MAP.MONITOR 3ffe0--3ffff ; END OF FILE ENDDO ; Load example program ; Set pc to program start ; Bustype 16bit, non multiplexed ; Base address for CS0 ; Base address for CS1 ; A20-0 are used, 2MB ; CS0 and CS1 are used ; same value as BUSCON0 register ; same value as BUSCON1 register ; same value as SYSCON register ; where the monitor routine is ; situated ; End of file C166 Family Trace 8

9 Trace Structure The TRACE32-ICD Trace for the C166 family works as a bus trace and runs up to a max. speed of??. For a bus trace the address and data bus and certain state lines are recorded for every CPU cycle. As a result the complete information about the program and data flow is available. If no trace control is used, TRACE32-ICD Trace samples all bus cycles. But recontruction of the addresses is only possible if all 24 address line are sampled or if the address is within a 1 MByte range. The bus interface configuration for this 1 MByte memory range has to be entered in the SYStem window. Trace Features TRACE32-ICD Trace for the C166(CBC) family allows: to do selective tracing to start and stop the sampling at specific addresses to stop the program at a specific address. A delay counter can be used to delay the program stop The trace control is implemented by a special trigger RAM, that covers a maximum memory block of 1Mbyte (0x0* x0*FFFFF). Within this trigger RAM address selectors can be set in form of a hardware breakpoint. 1 MByte trigger RAM Within 1 MByte full trace control Lower and upper 8 MByte are mirrored Breakpoints can be set outside of the 1 MByte block, but the lower addresses (A0-A11) have to be different 16 MByte adress space If all cycles were sampled until the program was stop, the Context Tracking System can be used to debug out of the trace buffer or to get an HLL analysis of the trace contents with all stack and register variables. For more information on this feature refer to CTS. in General Commands Reference Guide C (general_ref_c.pdf). C166 Family Trace 9

10 Selective Tracing Selective tracing is controlled by the TEnable field in the TrOnchip Window (Break Menu -> OnChip Trigger ). By default an Echo hardware breakpoint is used to control the sampling. Selective trace (trace enable) B::TrOnchip tronchip Data TEnable TBegin TStop RESet Alpha Alpha Alpha CONVert TaskID Beta Beta Beta Charly Charly Charly Delta Delta Delta CYcle Address Echo Echo Echo Read Alpha Write Beta execute Charly compare Delta NoMatch Echo TTrigger Alpha Beta Charly Delta Echo TDelay 0. On-chip area Trace control area C166 Family Trace 10

11 Background information The trace is designed as bus trace for the C166(CBC) family. Trace control (start, stop, selective and trigger) is possible with special break points. The trigger RAM covers a maximum memory block of 1Mbyte (0x0* x0*FFFFF) where break points can be set in any way and any number. The complete memory area of the cpu will be covered with mapping and mirroring of the trigger RAM. The mapping will be done by software Using of more than 1Mbyte block or setting break points higher than 0x results in mirroring of the trigger RAM. For a better understanding follow some examples. Break.Set Commands B.S 0x /A B.S 0x0ffffe /B B.S 0x /A B.S 0x /C B.S 0x /A B.S 0x /B B.S 0x /A B.S 0x /B B.S 0x /A B.S 0x /B B.S 0x /C Effect ALPHA occurs on 0x and 0x BETA occurs on 0x0FFFFE and 0x8FFFFE ALPHA and BETA occur on 0x000010, 0x100010, 0x800010, 0x ALPHA occurs on: 0x000010, 0x100010, 0x800010, 0x BETA occurs on: 0x000020, 0x100020, 0x800020, 0x ALPHA occurs on: 0x000010, 0x100010, 0x800010, 0x BETA occurs on: 0x000020, 0x100020, 0x800020, 0x ALPHA occurs on: 0x000010, 0x100010, 0x800010, 0x BETA occurs on: 0x000020, 0x100020, 0x800020, 0x CHARLY occurs on: 0x000030, 0x100030, 0x800030, 0x C166 Family Trace 11

12 TriggerOnchip Window Setup The trigger onchip window can be opened with >TO< and will look like the following: Selective trace (trace enable) Start trace Stop trace Trigger trace B::to tronchip Data TEnable TBegin TStop RESet Alpha Alpha Alpha CONVert TaskID Beta Beta Beta Charly Charly Charly Delta Delta Delta CYcle Address Echo Echo Echo Read Alpha Write Beta execute Charly compare Delta NoMatch Echo TTrigger Alpha Beta Charly Delta Echo TDelay 0. Trigger delay Normaly the standard configuration will fit all needs, but it is possible to define the trace functionality for each break point (e.g. alpha). TENABLE All marked addresses will be traced selective. TSTART All marked addresses will start tracing. TSTOP All marked addresses will stop tracing with the ability to restart the trace with TSTART. TTRIGGER The first marked address that will reached starts the delay counter and after the counter reaches zero the recording stops. Restart with TSTART is not possible. TDELAY Presets the delay counter, one count reflects one record cycle. Marking is possible with simple B.Set commands: B.S 0x4C5A /A B.S 0x4C60 /B B.S 0x4C6A /C B.S 0x4C5C--0x4C5E /E ALPHA occurs on FETCH/EXECUTE of 0x4C5A BETA occurs on FETCH/EXECUTE of 0x4C60 CHARLY occurs on FETCH/EXECUTE of 0x4C6A ECHO occurs on FETCH/EXECUTE of 0x4C5C--0x4C5E C166 Family Trace 12

13 A breakpoint of a marked address will occur, when the address is fetched. This includes also prefetches! The marked addresses are visible in break list and data list window. For seeing the breakpoints in the data list window move per drag&drop the address line to the right: B::d.l EDCBAWRSHP addr/line code label mnemonic comment > register int i, primz, k; > int anzahl; > 741> anzahl = 0; P:004C58>E00F sieve: mov r15,#0x0 ED BA 743 for ( i = 0 ; i <= SIZE ; flags[ i++ ] = TRUE ) ; A P:004C5A E00C mov r12,#0x0 E P:004C5C E112 movb rl1,#0x1 E P:004C5E F0DC mov r13,r12 ; r13,i B P:004C60 08C1 add r12,#0x1 ; i,#1 P:004C62 E42D2E82 movb [r13+#0x822e],rl1 P:004C66 46FC1200 cmp r12,#0x12 ; i,#18 D P:004C6A BDF8 jmpr cc_sle,0x4c5c 745 for ( i = 0 ; i <= SIZE ; i++ ) P:004C6C E00C mov r12,#0x0 ; i,#0 { 747 if ( flags[ i ] ) P:004C6E F42C2E82 movb rl1,[r12+#0x822e]; rl1,[i+#flags] P:004C72 2D0F jmpr cc_eq,0x4c92 Marked Addresses The break list window shows the same information in another way. B::b.l address types state C:004C5A A MARK \\taskcl\taskc_c\sieve\6 C:004C5C--004C5F E MARK (\\taskcl\taskc_c\sieve\6+0x2) C:004C60 B MARK \\taskcl\taskc_c\sieve\6+0x6 C:004C6A D MARK \\taskcl\taskc_c\sieve\6+0x10 C166 Family Trace 13

14 Map Window Setup The TRACE32 RiscTrace extension records all bus cycles which occure. Normaly it is not interessting to trace the ROM monitor. In this case it is possible to blank out all this monitor cycles using >MAP.MONITOR range<. All maped ranges can be listed with MAP.List. B::map.l address type bus monitor attributes C: FFFDF C:3FFFE0--3FFFFF monitor C: FFFFFF Example The following example of a memory configuration will be used: 0x x00FFFF 0x x1FFFFF 0x x2FFFFF 0x xFFFFFF ; ROM on CS2/ 8bit multiplexed ; RAM on CS0/16bit not multiplexed ; FLASH on CS1/16bit not multiplexed ; RAM on CS0/16bit not multiplexed ; A00-A22 are driven by cpu The TRACE32 RiscTrace extension will trace all buscycles, but outside the specified trace control range the address reconstruction and code disassembling can fail. C166 Family Trace 14

15 1. Trace control within the ROM area ; TRACE SETUP SYS.O BUSTYPE MUX8 SYS.O ADDRSEL SYS.O ADDRSEL SYS.O ADDRSEL SYS.O SGT 8M SYS.O CS 3 SYS.O BUSCON0 06BF SYS.O BUSCON1 04BF SYS.O BUSCON2 047F SYS.O SYSCON 1484 MAP.MONITOR 0ffe0--0ffff ; Bustype 8bit, multiplexed ; Base address for CS0 ; Base address for CS1 ; Base address for CS2 ; A00-A22 are used, 8MB ; used CS lines ; same value as BUSCON0 register ; same value as BUSCON1 register ; same value as BUSCON2 register ; same value as SYSCON register ; where the monitor routine is ; situated 2. Trace control within the first RAM area (0x x1FFFFF) ; TRACE SETUP SYS.O BUSTYPE NOMUX16 SYS.O ADDRSEL SYS.O ADDRSEL SYS.O ADDRSEL SYS.O SGT 8M SYS.O CS 3 SYS.O BUSCON0 06BF SYS.O BUSCON1 04BF SYS.O BUSCON2 047F SYS.O SYSCON 1484 MAP.MONITOR 0ffe0--0ffff ; Bustype 16bit, non multiplexed ; Base address for CS0 ; Base address for CS1 ; Base address for CS2 ; A00-A22 are used, 8MB ; used CS lines ; same value as BUSCON0 register ; same value as BUSCON1 register ; same value as BUSCON2 register ; same value as SYSCON register ; where the monitor routine is ; situated 3. Trace control within the FLASH area ; TRACE SETUP SYS.O BUSTYPE NOMUX16 SYS.O ADDRSEL SYS.O ADDRSEL SYS.O ADDRSEL SYS.O SGT 8M SYS.O CS 3 SYS.O BUSCON0 06BF SYS.O BUSCON1 04BF SYS.O BUSCON2 047F SYS.O SYSCON 1484 MAP.MONITOR 0ffe0--0ffff ; Bustype 16bit, non multiplexed ; Base address for CS0 ; Base address for CS1 ; Base address for CS2 ; A00-A22 are used, 8MB ; used CS lines ; same value as BUSCON0 register ; same value as BUSCON1 register ; same value as BUSCON2 register ; same value as SYSCON register ; where the monitor routine is ; situated C166 Family Trace 15

16 4. Trace control within the second RAM area (0x xFFFFFF) ; TRACE SETUP SYS.O BUSTYPE NOMUX16 SYS.O ADDRSEL SYS.O ADDRSEL SYS.O ADDRSEL SYS.O SGT 8M SYS.O CS 3 SYS.O BUSCON0 06BF SYS.O BUSCON1 04BF SYS.O BUSCON2 047F SYS.O SYSCON 1484 MAP.MONITOR 0ffe0--0ffff ; Bustype 16bit, non multiplexed ; Base address for CS0 ; Base address for CS1 ; Base address for CS2 ; A00-A22 are used, 8MB ; used CS lines ; same value as BUSCON0 register ; same value as BUSCON1 register ; same value as BUSCON2 register ; same value as SYSCON register ; where the monitor routine is ; situated C166 Family Trace 16

17 Commands MAP.MONITOR Format: MAP.MONITOR <range> Blanks out the monitor routine from analyzer listing. PER.view Format: PER.view Shows peripheral window of the cpu. It contains important data for the trace setup. C166 Family Trace 17

18 SYStem.Option Format: SYStem.Option <def> <value> <def>: BUSTYPE SGT CS ADDRSEL0 ADDRSEL1 ADDRSEL2 ADDRSEL3 ADDRSEL4 BUSCON0 BUSCON1 BUSCON2 BUSCON3 BUSCON4 SYSCON MONBASE Bus type Number of used address lines Number of used CS lines Address selector of CS0 Address selector of CS1 Address selector of CS2 Address selector of CS3 Address selector of CS4 Bus configuration of CS0 Bus configuration of CS1 Bus configuration of CS2 Bus configuration of CS3 Bus configuration of CS4 System configuration Monitor base address <value>= Data value Sets trace significant options. TrOnchip Format: TrOnchip Shows the trigger on-chip window. C166 Family Trace 18

19 FAQ No information available C166 Family Trace 19

20 Technical Data Operation Voltage Adapter OrderNo Voltage Range Preprocessor for complete EGOLD family LA V Preprocessor for C166 family LA V Preprocessor for EGOLD family LA V Preprocessor for EGOLD+ family LA V Operation Frequency Module CPU TRACE LA-7857 PMB6850_E-GOLD MHz LA-7857 PMB7850_E-GOLD MHz LA-7857 PMB MHz LA-7857 PMB MHz LA-7857 PMB MHz LA-7880 C MHz LA-7880 C161U 66.0 MHz LA-7880 C165H 66.0 MHz LA-7880 C165UTAH 30.0 MHz LA-7880 C166CBC 30.0 MHz LA-7880 INCA-P 30.0 MHz LA-7880 PMB2850_E-GOLD 26.0 MHz LA-7880 SDA6000_M MHz LA-7880 ST MHz LA-7880 XC161CJ 30.0 MHz LA-7880 XC161CS 30.0 MHz LA-7880 XC164CM 30.0 MHz LA-7880 XC164CS 30.0 MHz LA-7880 XC167CI 30.0 MHz C166 Family Trace 20

21 Dimensions Dimension LA-7880 PP-C166-FAMILY 2850 PIN1 PIN1 PIN PIN1 ET80QF14 PIN1 ET100QF49 PIN1 ET144QF C166 Family Trace 21

22 Dimension LA-7881 PP-EGOLD C166 Family Trace 22

23 Dimension LA-7893 PP-EGOLD+ C166 Family Trace 23

24 Dimension LA-7851 CON-ICECON1-ICECON2 TOP VIEW SPACE BETWEEN TWO MICTOR SIDE VIEW PIN AMP MODU SYSTEM PIN MICTOR 38PIN MICTOR 1 1 ALL DIMENSIONS IN 1/1000 INCH LA-7857 PP-EGOLD+V3 TOP VIEW CABLE PIN PIN1 663 SIDE VIEW ALL DIMENSIONS IN 1/1000 INCH C166 Family Trace 24

25 Dimension LA-7858 CON-ICECON2-ICECON1 TOP VIEW PIN PIN1 PIN ALL DIMENSIONS IN 1/1000 INCH Adapter Not necessary. C166 Family Trace 25

26 Support Available Tools CPU ICE FIRE ICD DEBUG ICD MONITOR ICD TRACE POWER INTEGRATOR INSTRUCTION SIMULATOR C YES YES YES C161U YES YES YES YES C165H YES YES YES YES C165UTAH YES YES YES YES C166CBC YES YES YES YES INCA-P YES YES YES YES PMB2850_E-GOLD YES YES YES YES PMB6850_E-GOLD+ YES YES YES YES PMB7850_E-GOLD+ YES YES YES YES PMB7860 YES YES YES YES PMB7870 YES YES YES YES PMB7880 YES YES YES YES SDA6000_M2 YES YES YES YES ST10... YES YES YES XC161CJ YES YES YES YES XC161CS YES YES YES YES XC164CM YES YES YES YES XC164CS YES YES YES YES XC167CI YES YES YES YES C166 Family Trace 26

27 Compilers Language Compiler Company Option Comment C XC16X/ST10 Cosmic Software ELF/DWARF C GNU-GCC166 HighTec EDV-Systeme DBX GmbH C C166 ARM Germany GmbH EOMF-166 C C166 TASKING IEEE C++ GNU-CPP166 HighTec EDV-Systeme DBX GmbH C++ CP166 TASKING IEEE Target Operating Systems Company Product Comment ARM Germany GmbH ARTX-166 CMX Systems Inc. CMX-RTX Elektrobit Automotive Elektrobit tresos via ORTI GmbH Evidence Erika via ORTI Mentor Graphics Nucleus PLUS Corporation Vector oscan via ORTI Enea OSE Systems OSE Basic (OS166) Enea OSE Systems OSE Epsilon (OS166), 3.x - OSEK via ORTI Elektrobit Automotive ProOSEK via ORTI GmbH HighTec EDV-Systeme PXROS GmbH ARM Germany GmbH RTX166/-tiny Quadros Systems Inc. RTXC 3.2 Quadros Systems Inc. RTXC Quadros Articus Systems AB Rubus OS IBM Corp. SDT-Cmicro Micrium Inc. uc/os-ii 2.0 to 2.92 C166 Family Trace 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 Vector Software Windows COVERAGE C166 SDT CMICRO IBM Corp. Windows C166 Family Trace 28

29 Products Product Information OrderNo Code LA-7880 PP-C166-FAMILY LA-7857 PP-EGOLD+V3 LA-7851 CON-ICECON1-ICECON2 LA-7858 CON-ICECON2-ICECON1 Text Preprocessor for C166 family Preprocessor for C161.. C167 adaption to connector for evaluation boards Does not support Egold+V3! Preprocessor for complete EGOLD family Preprocessor for EGOLD, EGOLD+, EGOLD+V3 and EGOLDlite, adaption to ICECON2, Up to 56 MHz, extended trace features: 4 x 1MB Trigger RAM plus trigger features, requires PowerTrace requires LA-7858 if 80 pin AMP connector is used on the target Converter from AMP MODU SYSTEM50 to Mictor fo Converter from the 80 pin AMP MODU SYSTEM50 connectors on Preprocessor for C16x and XC16x family (LA-7880), EGOLD+ family (LA-7893) or EGOLD family (LA-7881) to 2 x 38 pin Mictor connectors Converter from 2 Mictor to AMP MODU SYSTEM50 Converter from the 2 x 38 pin mictor connectors on Preprocessor for complete EGOLD family (LA-7857) to 80 pin AMP connector + 80pol. Cable C166 Family Trace 29

30 Order Information Order No. Code Text LA-7880 PP-C166-FAMILY Preprocessor for C166 family LA-7857 PP-EGOLD+V3 Preprocessor for complete EGOLD family LA-7851 CON-ICECON1-ICECON2 Converter from AMP MODU SYSTEM50 to Mictor fo LA-7858 CON-ICECON2-ICECON1 Converter from 2 Mictor to AMP MODU SYSTEM50 C166 Family Trace 30

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

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

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

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

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

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... 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

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

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

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

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

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... 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 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

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

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

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

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

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

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

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

ICE Emulator for Hitachi H8/300 and H8/500

ICE Emulator for Hitachi H8/300 and H8/500 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/500...

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

Application Note Debug Cable C166

Application Note Debug Cable C166 Application Note Debug Cable C166 TRACE32 Online Help TRACE32 Directory TRACE32 Index TRACE32 Documents... ICD In-Circuit Debugger... Processor Architecture Manuals... C166 Family... XC16x Application

More information

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

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

More information

Application Note Debug Cable XC800

Application Note Debug Cable XC800 Application Note Debug Cable XC800 TRACE32 Online Help TRACE32 Directory TRACE32 Index TRACE32 Documents... ICD In-Circuit Debugger... Processor Architecture Manuals... XC800... XC800 Application Notes...

More information

TRACE32 Documents... ICD In-Circuit Debugger... Processor Architecture Manuals... ARM/CORTEX/XSCALE... RAM Trace Port Overview... 2 FAQ...

TRACE32 Documents... ICD In-Circuit Debugger... Processor Architecture Manuals... ARM/CORTEX/XSCALE... RAM Trace Port Overview... 2 FAQ... RAM Trace Port TRACE32 Online Help TRACE32 Directory TRACE32 Index TRACE32 Documents... ICD In-Circuit Debugger... Processor Architecture Manuals... ARM/CORTEX/XSCALE... RAM Trace Port... 1 Overview...

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

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

UAD2 + Universal Access Device2 plus

UAD2 + Universal Access Device2 plus UAD2 + Universal Access Device2 plus The access to the whole choice of C166, XC166, XC2000, XE166, C166CBC, C166S V2, TriCore, PowerPC, ST30, STR7, ARM7, ARM9, ARM11, XScale, SH-2A derivatives is supported

More information

ARM Application Note for MXC Chips

ARM Application Note for MXC Chips ARM Application Note for MXC Chips TRACE32 Online Help TRACE32 Directory TRACE32 Index TRACE32 Documents... ICD In-Circuit Debugger... Processor Architecture Manuals... ARM/CORTEX/XSCALE... ARM Application

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 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

FIRE, ICE and ICD : Three Number 1 Hits!

FIRE, ICE and ICD : Three Number 1 Hits! TRACE NEWS Spring 1999 FIRE, ICE and ICD : Three Number 1 Hits! Lauterbach ended the 1998 business year with sales 60% up on the previous year. Lauterbach thus retained its position as the most successful

More information

TRACE32 Getting Started... ICD In-Circuit Debugger Getting Started... ICD Introduction... 1

TRACE32 Getting Started... ICD In-Circuit Debugger Getting Started... ICD Introduction... 1 ICD Introduction TRACE32 Online Help TRACE32 Directory TRACE32 Index TRACE32 Getting Started... ICD In-Circuit Debugger Getting Started... ICD Introduction... 1 Introduction... 2 What is an In-Circuit

More information

Microbee Technology FTM-3SE

Microbee Technology FTM-3SE Microbee Technology FTM-3SE Freescale Tower System Compatible Field Programmable Gate Array Module TWR-K70 Demo Quick Start Guide The flexibility that programmable logic brings to hardware design has now

More information

C167 (as opposed to C166, C164) - Compiler dependent; KEIL C166 tool chain uses a. generates instructions for the

C167 (as opposed to C166, C164) - Compiler dependent; KEIL C166 tool chain uses a. generates instructions for the System Startup Detailed MP4-1 System Startup Detailed MP4-2 week lecture Topics 4 System Startup Detailed - (example: KEIL) Macro definitions, configuration registers and stack frames - and memory maps

More information

Support for RISC-V. Lauterbach GmbH. Bob Kupyn Lauterbach Markus Goehrle - Lauterbach GmbH

Support for RISC-V. Lauterbach GmbH. Bob Kupyn Lauterbach Markus Goehrle - Lauterbach GmbH Company Lauterbach Profile Debug Support for RISC-V Lauterbach GmbH Bob Kupyn Lauterbach USA @2016 Markus Goehrle - Lauterbach GmbH Leading Manufacturer of Microprocessor Development Tools Founded in 1979

More information

STart168. FORTH-SYSTEME GmbH. Evaluation Kit for ST10F168 Microcontroller. D Breisach, Germany Kueferstrasse 8. P.O.

STart168. FORTH-SYSTEME GmbH. Evaluation Kit for ST10F168 Microcontroller. D Breisach, Germany Kueferstrasse 8. P.O. STart168 Evaluation Kit for ST10F168 Microcontroller FORTH-SYSTEME GmbH P.O. Box 11 03 D-79200 Breisach, Germany Kueferstrasse 8 D-79206 Breisach, Germany +49 (7667) 908-0 Fax +49 (7667) 908-200 e-mail:

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

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

Celeron EPIC Computer with GUI and Dual Ethernet SBC4685

Celeron EPIC Computer with GUI and Dual Ethernet SBC4685 Celeron EPIC Computer with GUI and Dual SBC4685 Features Ready to run Celeron/Pentium III computer Color flat-panel support Four serial ports CAN Bus interface PC/104 & PC/104-Plus expansion The SBC4685

More information

PXA270 EPIC Computer with Power Over Ethernet & Six Serial Protocols SBC4670

PXA270 EPIC Computer with Power Over Ethernet & Six Serial Protocols SBC4670 PXA270 EPIC Computer with Power Over Ethernet & Six Serial Protocols SBC4670 Features RoHS 520MHz Low-power ARM processor w/ 800 x 600 Color LCD Power Over Ethernet and 10/100BASE-T Ethernet GPS module

More information

RTOS Debugger for CMX

RTOS Debugger for CMX RTOS Debugger for CMX TRACE32 Online Help TRACE32 Directory TRACE32 Index TRACE32 Documents... RTOS Debuggers... RTOS Debugger for CMX... 1 Overview... 2 Brief Overview of Documents for New Users... 3

More information

RTOS Debugger for RTX-ARM

RTOS Debugger for RTX-ARM RTOS Debugger for RTX-ARM TRACE32 Online Help TRACE32 Directory TRACE32 Index TRACE32 Documents... RTOS Debuggers... RTOS Debugger for RTX-ARM... 1 Overview... 2 Brief Overview of Documents for New Users...

More information

Programming in the MAXQ environment

Programming in the MAXQ environment AVAILABLE The in-circuit debugging and program-loading features of the MAXQ2000 microcontroller combine with IAR s Embedded Workbench development environment to provide C or assembly-level application

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

MPLAB SIM. MPLAB IDE Software Simulation Engine Microchip Technology Incorporated MPLAB SIM Software Simulation Engine

MPLAB SIM. MPLAB IDE Software Simulation Engine Microchip Technology Incorporated MPLAB SIM Software Simulation Engine MPLAB SIM MPLAB IDE Software Simulation Engine 2004 Microchip Technology Incorporated MPLAB SIM Software Simulation Engine Slide 1 Welcome to this web seminar on MPLAB SIM, the software simulator that

More information

Practical Hardware Debugging: Quick Notes On How to Simulate Altera s Nios II Multiprocessor Systems Using Mentor Graphics ModelSim

Practical Hardware Debugging: Quick Notes On How to Simulate Altera s Nios II Multiprocessor Systems Using Mentor Graphics ModelSim Practical Hardware Debugging: Quick Notes On How to Simulate Altera s Nios II Multiprocessor Systems Using Mentor Graphics ModelSim Ray Duran Staff Design Specialist FAE, Altera Corporation 408-544-7937

More information

FR30-RAM-Stack-Board Documentation Part-Number: FR-RAM-STACK1-100P-M06

FR30-RAM-Stack-Board Documentation Part-Number: FR-RAM-STACK1-100P-M06 FR30-RAM-Stack-Board Documentation Part-Number: FR-RAM-STACK1-100P-M06 Fujitsu Mikroelektronik GmbH Am Siebenstein 6-10 63303 Dreieich-Buchschlag, Germany Revision: Date: 1.1 30/7/99 Page 1 Contents Hardware

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

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

_ V1.2. Motorola 68HC08 JL POD rev. D1. POD Hardware Reference

_ V1.2. Motorola 68HC08 JL POD rev. D1. POD Hardware Reference _ V1.2 POD Hardware Reference Motorola 68HC08 JL POD rev. D1 Ordering code IC20075 Thank you for purchasing this product from isystem. This product has been carefully crafted to satisfy your needs. Should

More information

_ V1.1. Motorola 6809 B POD rev. C. POD Hardware Reference

_ V1.1. Motorola 6809 B POD rev. C. POD Hardware Reference _ V1.1 POD Hardware Reference Motorola 6809 B POD rev. C Ordering code IC81060 Thank you for purchasing this product from isystem. This product has been carefully crafted to satisfy your needs. Should

More information

TRACE32 Training...! Training ICD In-Circuit Debugger...! Training ICD Basics... 1

TRACE32 Training...! Training ICD In-Circuit Debugger...! Training ICD Basics... 1 Training ICD Basics TRACE32 Online Help TRACE32 Directory TRACE32 Index TRACE32 Training...! Training ICD In-Circuit Debugger...! Training ICD Basics... 1 System Concept... 5 Basic Configuration TRACE32-ICD

More information

Errata Sheet. December 14, 1997 / Release 1.1

Errata Sheet. December 14, 1997 / Release 1.1 Microcomputer Components Technical Support Group Munich HL DC AT Errata Sheet December 14, 1997 / Release 1.1 Device : Stepping Code / Marking : SAB-C167CR-LM, SAF-C167CR-LM, SAK-C167CR-LM BB The C167CR

More information

FIRE-ST10. FIRE Emulator for ST10. Technical Information

FIRE-ST10. FIRE Emulator for ST10. Technical Information Technical Information FIRE Emulator for ST10 21.02.17 C165 C167 C167C C167CR C167CS C167CW C167SR ST10F163 ST10F167 ST10F168 ST10F169 ST10F251 ST10F251M ST10F252 ST10F252M ST10F269 ST10F271 ST10F271B ST10F271M

More information

EE4380 Microprocessor Design Project

EE4380 Microprocessor Design Project EE4380 Microprocessor Design Project Fall 2002 Class 1 Pari vallal Kannan Center for Integrated Circuits and Systems University of Texas at Dallas Introduction What is a Microcontroller? Microcontroller

More information

KIT-VR5500-TP. User's Manual(Rev.2.02) RealTimeEvaluator

KIT-VR5500-TP. User's Manual(Rev.2.02) RealTimeEvaluator User's Manual(Rev.2.02) RealTimeEvaluator Software Version Up * The latest RTE for Win32 (Rte4win32) can be down-loaded from following URL. http://www.midas.co.jp/products/download/english/program/rte4win_32.htm

More information

F28HS2 Hardware-Software Interfaces. Lecture 6: ARM Assembly Language 1

F28HS2 Hardware-Software Interfaces. Lecture 6: ARM Assembly Language 1 F28HS2 Hardware-Software Interfaces Lecture 6: ARM Assembly Language 1 CISC & RISC CISC: complex instruction set computer original CPUs very simple poorly suited to evolving high level languages extended

More information

386EX PC/104 Computer with CompactFlash and PCMCIA SBC1390

386EX PC/104 Computer with CompactFlash and PCMCIA SBC1390 386EX PC/104 Computer with CompactFlash and PCMCIA SBC1390 Features Small, low cost, ready to run 386EX, 25 or 33MHz Up to 32MB DRAM CompactFlash connector Optional PC Card interface for Wi-Fi, modem,

More information

IAR Embedded Workbench

IAR Embedded Workbench IAR Embedded Workbench JTAGjet -Trace and JTAGjet -Trace-CM User Guide for Advanced RISC Machines Ltd s ARM Cores JTAGjet-Trace-1 COPYRIGHT NOTICE 2013 IAR Systems AB. No part of this document may be reproduced

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

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

Development Tools. 8-Bit Development Tools. Development Tools. AVR Development Tools

Development Tools. 8-Bit Development Tools. Development Tools. AVR Development Tools Development Tools AVR Development Tools This section describes some of the development tools that are available for the 8-bit AVR family. Atmel AVR Assembler Atmel AVR Simulator IAR ANSI C-Compiler, Assembler,

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

KIT-VR7701-TP. User's Manual(Rev.1.00) RealTimeEvaluator

KIT-VR7701-TP. User's Manual(Rev.1.00) RealTimeEvaluator User's Manual(Rev.1.00) RealTimeEvaluator Software Version Up * The latest RTE for Win32 (Rte4win32) can be down-loaded from following URL. http://www.midas.co.jp/products/download/english/program/rte4win_32.htm

More information

CONTENTS. dspicpro4 KEY FEATURES 4 CONNECTING THE SYSTEM 5 INTRODUCTION 6

CONTENTS. dspicpro4 KEY FEATURES 4 CONNECTING THE SYSTEM 5 INTRODUCTION 6 CONTENTS dspicpro4 KEY FEATURES 4 CONNECTING THE SYSTEM 5 INTRODUCTION 6 Switches and Jumpers 7 MCU Sockets 8 Power Supply 10 On-Board USB 2.0 Programmer 11 MikroICD 12 RS-232 Communication Circuit 13

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

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

RTE-V850E/GP1-IE USER'S MANUAL (REV.1.01) RealTimeEvaluator

RTE-V850E/GP1-IE USER'S MANUAL (REV.1.01) RealTimeEvaluator RTE-V850E/GP1-IE USER'S MANUAL (REV.1.01) RealTimeEvaluator REVISION HISTORY Rev. 1.00 June 20, 2002 Rev. 1.01 November 15, 2002 First edition Revising following chapters * "Measured value of execution

More information

ensures that the assembler generates instructions for the C167 (as opposed to XC167) Memory models The system startup file

ensures that the assembler generates instructions for the C167 (as opposed to XC167) Memory models The system startup file System Startup Detailed -1 week lecture Topics 4 System Startup Detailed - ( TASKING) Macro definitions, configuration registers and stack frames - and memory maps - Memory type specifiers - Object classes

More information

Debugging Embedded Cores in Xilinx FPGAs [PPC4xx]

Debugging Embedded Cores in Xilinx FPGAs [PPC4xx] Debugging Embedded Cores in Xilinx FPGAs [PPC4xx] TRACE32 Online Help TRACE32 Directory TRACE32 Index TRACE32 Documents... ICD In-Circuit Debugger... Processor Architecture Manuals... PPC400/PPC440...

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

ARM-ETM Programming Dialog

ARM-ETM Programming Dialog ARM-ETM Programming Dialog TRACE32 Online Help TRACE32 Directory TRACE32 Index TRACE32 Documents... ICD In-Circuit Debugger... Processor Architecture Manuals... ARM/CORTEX/XSCALE... ARM-ETM Programming

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

Errata Sheet. January 11, 1999 / Release 1.2. Stepping Code / Marking:

Errata Sheet. January 11, 1999 / Release 1.2. Stepping Code / Marking: Microcontroller Components Errata Sheet January 11, 1999 / Release 1.2 Device: Stepping Code / Marking: Package: C164CI-8E ES-CA, CA MQFP-80 This Errata Sheet describes the deviations from the current

More information

Integration for CodeBlocks

Integration for CodeBlocks Integration for CodeBlocks TRACE32 Online Help TRACE32 Directory TRACE32 Index TRACE32 Documents... 3rd Party Tool Integrations... Integration for CodeBlocks... 1 Overview... 2 Supported Code::Blocks versions...

More information

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

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

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

_ V ST STM8 Family On-Chip Emulation. Contents. Technical Notes

_ V ST STM8 Family On-Chip Emulation. Contents. Technical Notes _ V9.12. 225 Technical Notes ST STM8 Family On-Chip 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 Training... Training FIRE Emulator... Training FIRE Basics... 1

TRACE32 Training... Training FIRE Emulator... Training FIRE Basics... 1 Training FIRE Basics TRACE32 Online Help TRACE32 Directory TRACE32 Index TRACE32 Training... Training FIRE Emulator... Training FIRE Basics... 1 System Architecture... 5 Host Interfaces 6 Parallel Interface

More information

Course Introduction. Purpose: Objectives: Content: 27 pages 4 questions. Learning Time: 20 minutes

Course Introduction. Purpose: Objectives: Content: 27 pages 4 questions. Learning Time: 20 minutes Course Introduction Purpose: This course provides an overview of the Direct Memory Access Controller and the Interrupt Controller on the SH-2 and SH-2A families of 32-bit RISC microcontrollers, which are

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

_ 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

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

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

Note that FLIP is an Atmel program supplied by Crossware with Atmel s permission.

Note that FLIP is an Atmel program supplied by Crossware with Atmel s permission. INTRODUCTION This manual will guide you through the first steps of getting the SE-8051ICD running with the Crossware 8051 Development Suite and the Atmel Flexible In-System Programming system (FLIP). The

More information

XC2000/XC16x/C166CBC Debugger

XC2000/XC16x/C166CBC Debugger XC2000/XC16x/C166CBC Debugger TRACE32 Online Help TRACE32 Directory TRACE32 Index TRACE32 Documents... ICD In-Circuit Debugger... Processor Architecture Manuals... C166 Family... XC2000/XC16x/C166CBC Debugger...

More information

Infineon C167CR microcontroller, 256 kb external. RAM and 256 kb external (Flash) EEPROM. - Small single-board computer (SBC) with an

Infineon C167CR microcontroller, 256 kb external. RAM and 256 kb external (Flash) EEPROM. - Small single-board computer (SBC) with an Microcontroller Basics MP2-1 week lecture topics 2 Microcontroller basics - Clock generation, PLL - Address space, addressing modes - Central Processing Unit (CPU) - General Purpose Input/Output (GPIO)

More information

TRACE32. Product Overview

TRACE32. Product Overview TRACE32 Product Overview Preprocessor Product Portfolio Lauterbach is the world s leading manufacturer of complete, modular microprocessor development tools with 35 years experience in the field of embedded

More information

DS1104 R&D Controller Board Single-board PCI hardware for use in PCs Set of intelligent I/O on-board

DS1104 R&D Controller Board Single-board PCI hardware for use in PCs Set of intelligent I/O on-board www.dspace.com DS1104 R&D Controller Board Single-board PCI hardware for use in PCs Set of intelligent I/O on-board DS1104 R&D Controller Board Cost-effective system for controller development Highlights

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.3 POD Hardware Reference Zilog Z180 POD rev. C Ordering code IC81012-20 Thank you for purchasing this product from isystem. This product has been carefully crafted to satisfy your needs. Should any

More information

April 4, 2001: Debugging Your C24x DSP Design Using Code Composer Studio Real-Time Monitor

April 4, 2001: Debugging Your C24x DSP Design Using Code Composer Studio Real-Time Monitor 1 This presentation was part of TI s Monthly TMS320 DSP Technology Webcast Series April 4, 2001: Debugging Your C24x DSP Design Using Code Composer Studio Real-Time Monitor To view this 1-hour 1 webcast

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

Intel 8086 MICROPROCESSOR ARCHITECTURE

Intel 8086 MICROPROCESSOR ARCHITECTURE Intel 8086 MICROPROCESSOR ARCHITECTURE 1 Features It is a 16-bit μp. 8086 has a 20 bit address bus can access up to 2 20 memory locations (1 MB). It can support up to 64K I/O ports. It provides 14, 16

More information

)8-,768'HY.LW 2YHUYLHZ. )XMLWVX0LNURHOHNWURQLN*PE+ Am Siebenstein Dreieich-Buchschlag, Germany

)8-,768'HY.LW 2YHUYLHZ. )XMLWVX0LNURHOHNWURQLN*PE+ Am Siebenstein Dreieich-Buchschlag, Germany )8-,768'HY.LW 2YHUYLHZ )XMLWVX0LNURHOHNWURQLN*PE+ Am Siebenstein 6-10 63303 Dreieich-Buchschlag, Germany Revision: V1.0 Date: 05.08.1999 Introduction to FUJITSU Development Kit for 16LX CPU family DevKit16

More information

This catalog includes the description and specifications for all Ceibo Development Tools. Systems are grouped in seven categories:

This catalog includes the description and specifications for all Ceibo Development Tools. Systems are grouped in seven categories: INTRODUCTION Development Tool for 80C51 Microcontrollers This catalog includes the description and specifications for all Ceibo Development Tools. Systems are grouped in seven categories: Development Boards:

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