WICE (Statement Syntax) (Assembler arithmetic operations) ( Program directives ) ( Conditional assem

Size: px
Start display at page:

Download "WICE (Statement Syntax) (Assembler arithmetic operations) ( Program directives ) ( Conditional assem"

Transcription

1 WICE (Statement Syntax) (Assembler arithmetic operations) ( Program directives ) ( Conditional assembly ) ( Reserved word )...17 (debugger) (Set breakpoint) (run program) WICE (Menu) (Tool bar) (connect) (File menu) (Edit menu) (View menu) (Project menu) (Debug menu) (Tool menu) (Option menu) (Window) (Help) (error message) /8/2004

2 WICE 8 Window ICE (Project) Window 95 Window 98, Window Me, Window 2000 Window XP WICE WICE assembler (linker) debugger WICE (error message) WICE (Project), (Project manager) Editor (find) (replace) undo redo (cut) (copy) (paste) (include) (macro) (assembly arithmetic) (conditional assembly) list file map file WICE (block comment) ICE WICE ICE WICE ICE (Project) (CDS code)

3 Step 1: ICE Software NEXT NEXT

4 Finish 3

5 Step 2: WICE : (double click ) WICE (ICON) : [ ] [ ] [EMC WICE] [WICE] 4: Step 3: Connect 1. Micro Controller: epv6300(ice6000) WICE 2. Connect Port: 3. Check ICE Memory: ICE ( ) 4. OK WICE 5 Connect

6 Step 4: (Project): 1. [File] [New ], (dialog) 2. [Project] tab. 6 [File] [New] Project [Project] [New ] 7: [Project] [New] Project

7 Step 5: ( ) 1. [File] [New ], (dialog) 2. [File] tab 8: Step 6: ( ) 1. [Project] [Add files to project ], open file (dialog) 2. project OK 9: Project

8 Step 7: 10: Step 8: [Project] [Rebuild All], Output 11:

9 Step 9: ICE [Project] [Dump to ICE] 12: ICE Step 10: (Step Into) [Debug] [Step Into] (Hot key) [F7] Step 11: ( dt asm) (Double click). 13: Step 12: Go [Debug] [Go] Hot key [F5] Step 16: step 10 step 15

10 1. 2. (Statement Syntax) [label [:]] operation [operand] [,operand][; comment] (label) (operation) (operand) (comment) ( ) (Tab) (label): : Includin A~Z a~z 0~9 _ 0~9 31 (operation): instruction (directive) mov a,@02 (directive) org 0x20 (operand): (operation),

11 (comment): (line comment), (block comment) : ; ; test comment (block comment): /* */ /* test comment */ 3. (Decimal) 0D<digits> <digits>d <digits> 0X<digits> <digits>h (Hexadecimal) (Octal) 0Q<digits> <digits>q (Binary) 0B<digits> <digits>b : <digit>h A~F a~f 0, 4. (Assembler arithmetic operations) (TRUE) (FALSE) 0xFF 0x00 (operator) (1) ( ) (2) (Unary operators)! (Logical NOT) ~ ( Complement ) ( Unary minus ) (3) * ( Multiplication ) / ( Division ) % ( Modulo ) << ( Logical shift left ) >> ( Logical shift right ) (4) (5) AND

12 & ( BIT AND) (6) OR XOR OR (Bit OR) ^ XOR ( Bit XOR ) (7) AND && AND ( Logical AND ) (8) OR OR (Logical OR) (9) (Comparison) == ( equal )!= ( not equal ) > ( greater than ) < ( less than ) >= ( greater or equal than) <= ( less or equal than) 5. ( Program directives ) (1) ORG : ( program counter ) : ORG <expression> : org 0x200 (2) EQU or == (Duplicate =): : <label> EQU <expression> : R20 equ 0x20 : R20 == 0x20 (3) (Line comment) : ; < string > : ; this is the comment string. (Block comment) : /* <strings> */ : /* this is block comment example including multi lines */ (4) EOP : ROM Page (end of page) : EOP : org 0x10 mov 0x20,A inc 0x20 eop inc 0x20 (source address): org 0x mov 0x20,A

13 0011 inc 0x20 eop 0400 inc 0x20 (5) END :, END : END : org 0x10 mov 0x20,a inc 0x20 end mov 0x20,a (source address): org 0x mov 0x20,a 0011 inc 0x20 end mov 0x20,a (6) PROC, ENDP : : <label> PROC <statements> ENDP : BANK0: PROC BC 0X04,6 BC 0X04,7 RET ENDP :PROC ENDP RET. (7) INCLUDE: INCLUDE: INCLUDE a. INCLUDE EMC456.INC EMC32.INC : INCLUDE <filename> : INCLUDE <EMC456.INC> b. INCLUDE : INCLUDE file_path+file_name : INCLUDE C:\EMC\TEST\TEST456.INC : INCLUDE

14 (8) PUBLIC EXTERN: Project Project PUBLIC EXTERN PUBLIC : PUBLIC <label>[,<label>] EXTERN : EXTERN <label>[,<label>] PUBLIC EXTERN PUBLIC EXTERN : Project TEST1.DT TEST2.DT TEST1.DT: org 0x00 public start extern loop1 Start: mov a,@0x02 mov 0x20,a jmp loop1 TEST2.DT: org 0x100 public loop1 extern start Loop1: inc 0x20 jmp start TEST1.DT START LOOP1 START PUBLIC LOOP1 EXTERN TEST2.DT START EXTERN LOOP1 PUBLIC (9) VAR:. : Label VAR <expression> : test var 1 mov a,@test test var test+1 mov a,@test (10) MACRO, ENDM: : <label> MACRO <parameters> statements ENDM : bank0 macro bc 0x04,6 bc 0x04,7 endm

15 (11) MACEXIT: MACEXIT : MACEXIT : Source: test var 5 bank0 macro bc 0x04,6 if test>4 macexit endif bc 0x04,7 endm bank0 ( address) 0000 bc 0x04,6 test=5 if test>4 macexit endm (12) MESSAGE : output : MESSAGE <characters> : org 0x00 message set bank to 0!! bc 0x04,6 bc 0x04,7 output : USER MESSAGE: set bank to 0!! (13) $ : (Program counter) $ (operand) : jmp $ jmp $ jmp 6. ( Conditional assembly ) (1) IF : IF IF ELSEIF ELSE ENDIF : IF <expr> <statements1> [ELSEIF <expr>

16 <statements2>] [ELSE <statements3>] ENDIF : org 0x00 bank macro num if num==0 bc 0x04,6 bc 0x04,7 elseif num==1 bs 0x04,6 bc 0x04,7 elseif num==2 bc 0x04,6 bs 0x04,7 elseif num==3 bs 0x04,6 bs 0x04,7 else message error : bank num over max number!!! endif endm (2) IFE: IFE IFE ELSEIFE ELSE ENDIF : IFE <expr> <statements1> [ELSEIFE <expr> <statements2> ] [ELSE <statements3>] ENDIF (3) IFDEF: IFDEF IFDEF (label) IFDEF ELSEIFDEF ELSE ENDIF : IFDEF <label> <statements1> [ELSEIFDEF <label> <statements2>] [ELSE <statements3>] ENDIF

17 : org 0x00 ice456 equ 456 ifdef ice456 bc 0x04,6 bc 0x04,7 endif (4) IFNDEF: IFNDEF IFNDEF (label) IFNDEF ELSEIFNDEF ELSE ENDIF : IFNDEF <label> <statements1> [ELSEIFNDEF <label> <statements2>] [ELSE <statements3>] ENDIF 7. ( Reserved word ) (1) (directives), ( operators) + - * / ==!= # ( )! ~ % << >> & ^ && < <= > >= DS ELSE ELSEIF ELSEIFDEF ELSEIFE ELSEIFNDE END ENDIF ENDM ENDMOD F ENDP EQU EXTERN IF IFE IFDEF IFNDE INCLUDE MACRO MACEXIT F MODULE NOP PAGE ORG PROC PUBLIC

18 (2) (instructions mnemonics) ADD AND BC BS CALL CLR COM COMA CONTR CONTW DAA DEC DECA DISI DJZ DJZA ENI INC INCA INT IOR IOW JBC JBS JMP JZ JZA MOV NOP OR RET RETI RETL RLC RLCA RRC RRCA SLEP SUB SWAP TBL WDTC XOR (3) ( Register names) A (debugger) (source level debugger) : Step 1: ( go ) Step 2: go free run reset step into step over go to cursor 1. (Set breakpoint) (1) (breakpoint counter): Step1: [option] [Debug option setting] (dialog) [Default break point counter] ( 1 255) Step2: (double click) tool bar toggle breakpoint ( ) menu [Debug] [Toggle Breakpoint] (2) Step1: [option] [Debug option setting] (dialog) [Default break point counter] 0 Step2: (double click) (dialog) [OK] 2. (run program) hot key (1) go(f5): (program counter) free run(f10): (program counter)

19 (3) reset(f6): ICE reset reset (4) step into(f7): (5) step over(f8): call RET (step into) (6) go to cursor(f4): (program counter) WICE 1. (Menu) 14: (Menu) (1) File: (Project) (2) Edit: :Undo Redo (Copy) (Paste) (Cut) (go to line) Find( ) Replace( (3) View: : Project Special Register RAM(Bank) Output Watch (4) Project: (new), (open), (save), (close), (Add files to project) (Delete files from project), (Assembler file) (Build) (Rebuild All) ICE (Dump to ICE) (Trace log) (5) Debug: : go free run step into step over reset go to cursor run from selected line reset and go reset and free run (6) Tool:, ICE (Check ICE memory) Piggy back (Piggy back MIX format) Piggy back (Piggy back Hi Lo format) check sum (Get Check sum from project) (7) Option: (connect) (Register view)

20 (Debug option setting), ICE code option (ICE code option) (environment setting) (Font) (8) Window: (9) Help: (10) About: 2. (Tool bar) 15: Tool bar (1) (New file) (2) (Open file) (3) (Save) (4). all) (5) (Find) (6) (Cut) (7) (Copy) (8) (Paste) (9)Undo (10)Redo (11) (Assembler) (12) (Build) (13) (Toggle break point) (14)Go (15)Reset (16)Step into (18)Step over (19) Go to cursor (19)Run from selected line (20)Trace back (21) Trace forth (1) (4) (5) (10) (11) (12) (Project) (13) (21) 3 (connect) 16: ICE

21 Micro controller: EM78611, EM78612, EM78810, epv6300 Connect port: Print port 378H, 278H, 3BCH Check ICE Memory: ICE ICE Print ICE ICE ICE: [Option] [Connect], 16 ICE (protocol) 4. (File menu) (1) New ( Project) 17: 18:

22 (New file): step 1: [Add to Project] (check box) Project step 2: (file name) (edit) Step 3: (location) [ ] Step 4: (OK) (Cancel) Project: Project 19: Step 1: [Project] (tab) Step 2: (Project) name) (edit) Step 3: (location) [ ] Step 4: (Micro Controller) Step 5: (OK) (Cancel)

23 (2) Open ( (project)) 20: (project) (project): Step 1: (Source) dt asm (Project) prj Step 2: Step 3: (Open) (3) Close ( (project)) Step 1: (window) (Active Step 2: [File] [Close] (4) Open Project ( (project)) 21: Step 1: Step 2:

24 (5) Save Project ( (project)) Step 1: ( ) (Source) (Reference) List file ( ) Map file( (link) (Public label) ) ROM less Code Option Step 2: [File] [Save Project] (6) Close Project ( (project)) [File] [Close Project] WICE (Project Window) (7) Save ( (project)) Step 1: (window) (Active Step 2: [File] [Save] ( ) (8) Save As ( ) 22: Step 1: (window) (Active window) Step 2: [File] [Save As ] 36 Step 3: [ ] Step 4: [ ] (9) Save All ( ) [File] [Save All] (10) Print ( ) (11) Print Setup ( ) (12) Resent Files ( ) (13) Recent Projects ( ) (14) Exit( )

25 5. (Edit menu) 23: (1) Undo: (2) Redo: Undo (3) Cut: (4) Copy: (5) Paste: (6) Clear: (7) Select All: (8) Go to line: Step 1: Step 2: [OK] 24: (9) Find:

26 25: Step 1: Step 2: Step 3: (Find next) (10) Replace: 26: Step 1: Step 2: Step 3: Step 4: (Find next) Step 5: (Replace) 6. (View menu) 27:View (1) Project: (Project window) Files( DT ASM) References( INCLUDE ) List files( LIST LST) Map files(

27 Project MAP (Public label) 28:Project a. (Project): [File] [New ] [File] b. (Project): [Project] [Add files to project] c. : Del (2) Special register: (Accumulator) (Control) 0 1F 29: Special register : 16 0~9 A~F back space Del ICE (3) RAM(Bank): RAM(BANK)

28 30:RAM(Bank) (4) Output: (trace log) Output (Double click) (5) Watch :, :Watch (6) Data RAM: Data RAM (ON BANK) 7. (Project menu) 32: Project (1) New: (Project) 33

29 . 33: (2) Open: (Project). (3) Save: (Project) (4) Close: (Project) (5) Add files to project: (Project) (Project) 34: Project (6) Delete files from project: 49 35:

30 (7) Assembler file: Output 0 0 (8) Build: Project Output (9) Rebuild All: Output (10) Dump to ICE: ICE 50 (Dumping) 36: (Dumping) (11) Trace log: trace log Go Free run Go to cursor step over ( call ) Output 8K 8. (Debug menu)

31 37: WICE (1) Go(F5):F5 (Hot key) Go (Program Counter) (2) Free run(f10): (Program Counter) 38 [OK] 38: (3) Reset(F6):ICE (0 ROM size ) (4) Step into(f7): ICE (5) Step over(f8): Call (6) Go to cursor(f4): (7) Continue step into(alt+f7): (step into), (8) Run from selected line:, (9) Toggle breakpoint: (10) Show all breakpoints: output, (11) Add label to watch: Watch, 39

32 39: label Watch (12) Reset and Free run: ICE Free run (13) Reset and Go: ICE Go (14) Run from: 40: a. Initial with 8K Step log: 8K b. Current PC with 8K Step log: 8K c. Initial with 4K-4K log: 4K 4K d. Current PC with 4K-4K log: 4K (15) Address break point: 41

33 41: address,, address,, Address breakpoint not active,. Address, Group, OR, Nest,. OR Nest, Group. (a) Group : 63 group, Group,, 1, 0,, Group. (b) OR : 63 group, Group, Group 1, 0,, Group (c) : Group, Group1, Group2, Group3, Group3 0, Group2 0 Group1 0, Group 0,, 0 : : Step 1: Breakpoint nest Step 2: (0x03, 0x01) (0x05,0x02) (0x03) group A 1 ( ) (0x05) group B 2 Step 3: [OK] Step 4: Go(F5) Step 5: group B group A

34 9. (Tool menu) 42: (1) Check ICE memory: ICE (2) Piggy back MIX format: Piggy back MIX EPROM (3) Piggy back Hi Lo format: Piggy back High Low EPROM (4) Get checksum from project: (Project) check sum Ordering form (5) Clear all output mapping line: Output 10. (Option menu) 43: (Option) (1) Connect: ICE WICE (connect) (2) Register view: ( )

35 44: (Register View) : Step 1: (Check box) 16 Step 2: [OK] (3) Debug Option setting: 45: : a. Dumping codes and checking: ICE b. Interrupt disable after break point: ICE TCC COUNTER ~ COUNTER2 TCC COUNTER1 ~ COUNTER2 TCC COUNTER1 ~ COUNTER2 c. Default break point counter: d. Show source code in trace log: Trace log output,,. trace log Output,

36 (4) Environment setting: 46 46: a. Create List file: LIST LIST b. Create MAP file: MAP (public label) c. Editor window contains: WICE 20 d. Recent file list contains: [File] [Recent files] 10 e. Recent project list contains: [File] [Recent Project] (project) 10 (6) Font: Output 11. (Window)

37 47: Cascade: 48 48: Tile: 49 49: 12. (Help) (1) Help WICE [ ] [ ] [EMC WICE] [EMC WICE ReadMe] Read Me HTML (2) About: WWW

38 (error message) M A L D 1. M : (1) "error M001: Numbers of opening editor window are the limit!!" (2) "error M002:Not enough memory to allocate Editor Window!!" (3) error M003:File: [filename] is existed. (4) "error M004:File: [filename] can not be created." (5) "error M005:One project has been opened!!" Project Project Project (6) "error M006:Project: [filename] can not be created." Project Project (7) "error M007:The file [filename] already exists in the project." Project Project (8) "error M008:File: [filename] can not be saved!!" (9) "error M009:The project: [filename] is not EMC project file format." Project WICE Project Project Project (10) "error M010:The file: [filename] does not exist." (11) "error M011:The File: [filename] can not be opened." (12) "error M012:The file: [filename] exceeds %dk of the max size %dk." 1M (13) "error M013:The copy size: %d exceed %dk of the max size %dk."

39 (14) "error M014:Memory can not be allocated." (15) "error M015:Over 250 characters of a line!!" 250 (16) "error M016:The active file [filename] extension name is not.dt or.asm." DT ASM DT ASM (!7) "error M017:No file to assembler." (18) "error M018:Project file must be created." Project Project (19) "error M019:The editor number is over the max editor number." (20) "Error M020:No active editor window." Editor Editor (21) "Error M021: Text field must be input characters." 2. A : (1) "error A001: Can not find the [filename] file" (2) "error A002:main and subroutine program can not define [label name] local label!!" ( $ ) (3) "error A003: The syntax form should be: operation [operand][,operand]" operation [operand][,operand] (4) "error A004:The label [label name] is redefined." (5) "error A005: The EQU syntax is: label EQU operand" EQU

40 EQU (6) "error A006: The INCLUDE nest deep is over 256." INCLUDE 256 (INCLUDE INCLUDE) INCLUDE 256 (7) "error A007: The IF conditional expression is error." IF IF (8) "error A008: Attempt to divide by zero." 0 (9) "error A009:The assembler dose not support floating point." (10) "error A010:The symbol [symbol name] is not defined." (11) "error A011: The macro name [macro name] is redefined." (12) "error A012:The parameters name [parameter name] is the same as label." (13) "error A013:The parameter name [parameter name] is the same with another one." (14) "error A014:The number of actual parameter dose not match with formal parameter." (15) "error A015:The parameter number %d does not exist." (16) "error A016:The external symbol [symbol name] is the same name as defined label." (17) "error A017: Address of ORG is error." ORG ORG (18) "error A018:MACEXIT can not be set outside macro." MACEXIT MACRO MACEXIT

41 (19) "error A019: Parameter must be string variable." (20) "error A020:Memory can not be allocated." (21) "error A021:The source statements exceed %d lines." (22) "error A022:The tree is error because of parser error." (23) "error A023:[allocate memory type] memory fault when allocated memory." (24) "error A024:Set assembler variable must be integer value." (VAR operation) (25) "error A025:Address of ORG must be integer value." ORG ORG (26) "error A026:The %d address of PC is out of %d ROM size." ROM (27) "error A027: The assembler is exceed max pass %d." (28) "error A028:The operand %d value is not including the valid data. " (29) "error A029:The %4X address is conflicted." [Edit] [Find] LIST (30) "error A030:The file [file name] could not be opened." (31) "error A031:The configure file read error." WICE (32) "error A032: The file [file name] can not be opened."

42 (33) "error A033:The macro is not defined." (34) "error A034:The expression can not be calculated." (35) "error A035:The operation [operation name] is not defined." (36) "error A036:The PUBLIC or EXTERN label [label name] must be address label." (37)"error A037:The operand value can not be calculated." (37) "error A038:The symbol [symbol name] is not extern symbol." EXTERN (38) "error A039:The reference number is over %d limits." PUBLIC EXTERN EXTERN (39) "error A040:The length of file name [file name] exceeds 256." L : (1) "error L001: Memory of [memory type] stack overflow." (2) "error L002:The [file name] not found." (3) "error L003:The Object file format dose not belong to EMC object file format." Object WICE (4) "error L004:Symbol [symbol name] is not defined." (5) "error L005:Public symbol [symbol name] is conflict." (6) "error L006:ROM address %X is conflict."

43 [Edit] [Find] LIST (7) "error L007:The file [file name] can not be created." (8) "error L008:Line %d: The machine address %X exceeds ROM size %X." ROM (9) "error L009:No project file active." Project Project (10) "error L010:No output window found." Output [View] [Output] 4. D : (1) "error D001:The ICE memory is error." ICE (2) "error D002:CDS size=%xh does not match the ROM size=%xh." CDS ROM ICE WICE (3) "error D003:The project MCU type %s does not match %s ICE." (Project) ( (Title)) WICE ( WICE (Title)) WICE (4) "error D004:The line of file dose not transfer to machine address." (5) "error D005:The break point group number is over 64." (6) "error D006:The ICE is not connected to PC." ICE PC (7) "error D008:The number is invalid." (8) "error D009:The number of messages is over %d."

44 Output message (9) "Warning D010:The address %04X does not match source file." (11) "Warning D011:Memory checked is error!!" ICE (12) "error D012:Syntax error!!!" (16) "error D013:Memory address %08X is error!!!" ICE (17) "error D014:Cann't found breakpoint address of %s." (18) "error D015:The number of symbols is over %d. (19) "error D016:Please dump program before adding label to watch." [Debug] [Add label to watch], [Project] [Dump to ICE] [Project] [Dump to ICE] F3 (20) "error D017:Trace log is empty " Trace log Go, Free run Go to cursor trace log (21) "error D018:No trace item in trace log. " trace log

Computer Architecture

Computer Architecture ECE 3120 Computer Systems Assembly Programming Manjeera Jeedigunta http://blogs.cae.tntech.edu/msjeedigun21 Email: msjeedigun21@tntech.edu Tel: 931-372-6181, Prescott Hall 120 Prev: Basic computer concepts

More information

言1.PDF

言1.PDF MSP430 WINDOWS WORKBENCH MSP430 Flash Green MCU Flash Flash MCU MSP430 16 RISC 27 125ns 1.8V~3.6V A/D 6 s MSP430 10 ESD MSP430 MSP430 10 MSP430 2001 MSP430 Windows Workbench Interface Guide Windows Workbench

More information

epub83-1

epub83-1 C++Builder 1 C + + B u i l d e r C + + B u i l d e r C + + B u i l d e r C + + B u i l d e r 1.1 1.1.1 1-1 1. 1-1 1 2. 1-1 2 A c c e s s P a r a d o x Visual FoxPro 3. / C / S 2 C + + B u i l d e r / C

More information

WinMDI 28

WinMDI 28 WinMDI WinMDI 2 Region Gate Marker Quadrant Excel FACScan IBM-PC MO WinMDI WinMDI IBM-PC Dr. Joseph Trotter the Scripps Research Institute WinMDI HP PC WinMDI WinMDI PC MS WORD, PowerPoint, Excel, LOTUS

More information

Application Note Format

Application Note Format USB 說 2 - AD PWM Office: 6F, No. 12, Innovation 1st. RD., Science-Based Industrial Park, Hsin-Chu City, Taiwan, R.O.C Tel: +886-3-6661766 ext.1672 Fax: +886-3-6661765 Etoms Electronics Corp. Publication

More information

ICD ICD ICD ICD ICD

ICD ICD ICD ICD ICD MPLAB ICD2 MPLAB ICD2 PIC MPLAB-IDE V6.0 ICD2 usb PC RS232 MPLAB IDE PC PC 2.0 5.5V LED EEDATA MPLAB ICD2 Microchip MPLAB-IDE v6.0 Windows 95/98 Windows NT Windows 2000 www.elc-mcu.com 1 ICD2...4 1.1 ICD2...4

More information

(Load Project) (Save Project) (OffLine Mode) (Help) Intel Hex Motor

(Load Project) (Save Project) (OffLine Mode) (Help) Intel Hex Motor 1 4.1.1.1 (Load) 14 1.1 1 4.1.1.2 (Save) 14 1.1.1 1 4.1.2 (Buffer) 16 1.1.2 1 4.1.3 (Device) 16 1.1.3 1 4.1.3.1 (Select Device) 16 2 4.1.3.2 (Device Info) 16 2.1 2 4.1.3.3 (Adapter) 17 2.1.1 CD-ROM 2 4.1.4

More information

untitled

untitled 2006 6 Geoframe Geoframe 4.0.3 Geoframe 1.2 1 Project Manager Project Management Create a new project Create a new project ( ) OK storage setting OK (Create charisma project extension) NO OK 2 Edit project

More information

EK-STM32F

EK-STM32F STMEVKIT-STM32F10xx8 软 件 开 发 入 门 指 南 目 录 1 EWARM 安 装... 1 1.1 第 一 步 : 在 线 注 册... 1 1.2 第 二 步 : 下 载 软 件... 2 1.3 第 三 步 : 安 装 EWARM... 3 2 基 于 STMEVKIT-STM32F10xx8 的 示 例 代 码 运 行... 6 2.1 GPIO Demo... 6 2.2

More information

2/80 2

2/80 2 2/80 2 3/80 3 DSP2400 is a high performance Digital Signal Processor (DSP) designed and developed by author s laboratory. It is designed for multimedia and wireless application. To develop application

More information

Microsoft Word - 11.doc

Microsoft Word - 11.doc 除 錯 技 巧 您 將 於 本 章 學 到 以 下 各 項 : 如 何 在 Visual C++ 2010 的 除 錯 工 具 控 制 下 執 行 程 式? 如 何 逐 步 地 執 行 程 式 的 敘 述? 如 何 監 看 或 改 變 程 式 中 的 變 數 值? 如 何 監 看 程 式 中 計 算 式 的 值? 何 謂 Call Stack? 何 謂 診 斷 器 (assertion)? 如 何

More information

目 录

目 录 1 Quick51...1 1.1 SmartSOPC Quick51...1 1.2 Quick51...1 1.3 Quick51...2 2 Keil C51 Quick51...4 2.1 Keil C51...4 2.2 Keil C51...4 2.3 1 Keil C51...4 2.4 Flash Magic...9 2.5 ISP...9 2.6...10 2.7 Keil C51...12

More information

1.ai

1.ai HDMI camera ARTRAY CO,. LTD Introduction Thank you for purchasing the ARTCAM HDMI camera series. This manual shows the direction how to use the viewer software. Please refer other instructions or contact

More information

WWW PHP Comments Literals Identifiers Keywords Variables Constants Data Types Operators & Expressions 2

WWW PHP Comments Literals Identifiers Keywords Variables Constants Data Types Operators & Expressions 2 WWW PHP 2003 1 Comments Literals Identifiers Keywords Variables Constants Data Types Operators & Expressions 2 Comments PHP Shell Style: # C++ Style: // C Style: /* */ $value = $p * exp($r * $t); # $value

More information

AL-M200 Series

AL-M200 Series NPD4754-00 TC ( ) Windows 7 1. [Start ( )] [Control Panel ()] [Network and Internet ( )] 2. [Network and Sharing Center ( )] 3. [Change adapter settings ( )] 4. 3 Windows XP 1. [Start ( )] [Control Panel

More information

C/C++ - 字符输入输出和字符确认

C/C++ - 字符输入输出和字符确认 C/C++ Table of contents 1. 2. getchar() putchar() 3. (Buffer) 4. 5. 6. 7. 8. 1 2 3 1 // pseudo code 2 read a character 3 while there is more input 4 increment character count 5 if a line has been read,

More information

PTS7_Manual.PDF

PTS7_Manual.PDF User Manual Soliton Technologies CO., LTD www.soliton.com.tw - PCI V2.2. - PCI 32-bit / 33MHz * 2 - Zero Skew CLK Signal Generator. - (each Slot). -. - PCI. - Hot-Swap - DOS, Windows 98/2000/XP, Linux

More information

学习MSP430单片机推荐参考书

学习MSP430单片机推荐参考书 MSP430 16 MSP430 C MSP430 C MSP430 FLASH 16 1 CPU 16 ALU 16 PC SP SR R4~R15 2 3 00-FFH 100-1FFH 4 5 1 2 51 24 27 6 1 2 3 4 5 6 4 12 SR SP SR CPU SR CPU C Z N GIE CPUOff CPU OscOff SCG0 SCG1 CPU EXIT SP

More information

Microsoft Word - template.doc

Microsoft Word - template.doc HGC efax Service User Guide I. Getting Started Page 1 II. Fax Forward Page 2 4 III. Web Viewing Page 5 7 IV. General Management Page 8 12 V. Help Desk Page 13 VI. Logout Page 13 Page 0 I. Getting Started

More information

Oracle Solaris Studio makefile C C++ Fortran IDE Solaris Linux C/C++/Fortran IDE "Project Properties" IDE makefile 1.

Oracle Solaris Studio makefile C C++ Fortran IDE Solaris Linux C/C++/Fortran IDE Project Properties IDE makefile 1. Oracle Solaris Studio 12.2 IDE 2010 9 2 8 9 10 11 13 20 26 28 30 32 33 Oracle Solaris Studio makefile C C++ Fortran IDE Solaris Linux C/C++/Fortran IDE "Project Properties" IDE makefile 1. "File" > "New

More information

ARM JTAG实时仿真器安装使用指南

ARM JTAG实时仿真器安装使用指南 ARM JTAG Version 1.31 2003. 11. 12 ARM JTAG ARM JTAG.3 ARM 2.1.4 2.2.4 ARM JTAG 3.1 18 3.2 18 3.2.1 Multi-ICE Server.18 3.2.2 ADS..21 ARM JTAG 4.1 Multi-ICE Server 33 4.1.1 Multi-ICE Server..... 33 4.1.2

More information

WWW PHP

WWW PHP WWW PHP 2003 1 2 function function_name (parameter 1, parameter 2, parameter n ) statement list function_name sin, Sin, SIN parameter 1, parameter 2, parameter n 0 1 1 PHP HTML 3 function strcat ($left,

More information

untitled

untitled 8086/8088 CIP /. 2004.8 ISBN 7-03-014239-X.... TP313 CIP 2004 086019 16 100717 http://www.sciencep.com * 2004 8 2004 8 1 5 500 787 1092 1/16 16 1/2 391 000 1 2 ii 1 2 CAI CAI 3 To the teacher To the student

More information

Microsoft PowerPoint - STU_EC_Ch02.ppt

Microsoft PowerPoint - STU_EC_Ch02.ppt 樹德科技大學資訊工程系 Chapter 2: Number Systems Operations and Codes Shi-Huang Chen Sept. 2010 1 Chapter Outline 2.1 Decimal Numbers 2.2 Binary Numbers 2.3 Decimal-to-Binary Conversion 2.4 Binary Arithmetic 2.5

More information

AL-MX200 Series

AL-MX200 Series PostScript Level3 Compatible NPD4760-00 TC Seiko Epson Corporation Seiko Epson Corporation ( ) Seiko Epson Corporation Seiko Epson Corporation Epson Seiko Epson Corporation Apple Bonjour ColorSync Macintosh

More information

Windows XP

Windows XP Windows XP What is Windows XP Windows is an Operating System An Operating System is the program that controls the hardware of your computer, and gives you an interface that allows you and other programs

More information

Business Objects 5.1 Windows BusinessObjects 1

Business Objects 5.1 Windows BusinessObjects 1 Business Objects 5.1 Windows BusinessObjects 1 BusinessObjects 2 BusinessObjects BusinessObjects BusinessObjects Windows95/98/NT BusinessObjects Windows BusinessObjects BusinessObjects BusinessObjects

More information

6-1 Table Column Data Type Row Record 1. DBMS 2. DBMS MySQL Microsoft Access SQL Server Oracle 3. ODBC SQL 1. Structured Query Language 2. IBM

6-1 Table Column Data Type Row Record 1. DBMS 2. DBMS MySQL Microsoft Access SQL Server Oracle 3. ODBC SQL 1. Structured Query Language 2. IBM CHAPTER 6 SQL SQL SQL 6-1 Table Column Data Type Row Record 1. DBMS 2. DBMS MySQL Microsoft Access SQL Server Oracle 3. ODBC SQL 1. Structured Query Language 2. IBM 3. 1986 10 ANSI SQL ANSI X3. 135-1986

More information

C/C++语言 - 运算符、表达式和语句

C/C++语言 - 运算符、表达式和语句 C/C++ Table of contents 1. 2. 3. 4. C C++ 5. 6. 7. 1 i // shoe1.c: # include # define ADJUST 7. 64 # define SCALE 0. 325 int main ( void ) { double shoe, foot ; shoe = 9. 0; foot = SCALE * shoe

More information

C/C++ - 函数

C/C++ - 函数 C/C++ Table of contents 1. 2. 3. & 4. 5. 1 2 3 # include # define SIZE 50 int main ( void ) { float list [ SIZE ]; readlist (list, SIZE ); sort (list, SIZE ); average (list, SIZE ); bargragh

More information

Microsoft Word - MTK平台生产软件使用说明.doc

Microsoft Word - MTK平台生产软件使用说明.doc MTK 1. 1.1 SMT BSN 1.2 1 IMEI 2. 2 2.1 MTK Flash Flash NAND FlashMP3 1 SMT SOFT Flash 2 SOFT MKT USB-RS232 921600 8 2.2 COPY 2.3 USB PCUSB USB 8 USB USB USB-RS232 (USB ) RS232 PCRS232 8 4V2A 2.4 DA File

More information

第 15 章 程 式 編 写 語 言 15.1 程 式 編 写 語 言 的 角 色 程 式 編 寫 語 言 是 程 式 編 寫 員 與 電 腦 溝 通 的 界 面 語 法 是 一 組 規 則 讓 程 式 編 寫 員 將 字 詞 集 合 起 來 電 腦 是 處 理 位 元 和 字 節 的 機 器, 與

第 15 章 程 式 編 写 語 言 15.1 程 式 編 写 語 言 的 角 色 程 式 編 寫 語 言 是 程 式 編 寫 員 與 電 腦 溝 通 的 界 面 語 法 是 一 組 規 則 讓 程 式 編 寫 員 將 字 詞 集 合 起 來 電 腦 是 處 理 位 元 和 字 節 的 機 器, 與 程 式 編 写 語 言 在 完 成 這 章 後, 你 將 能 夠 了 解 程 式 編 写 語 言 的 功 能 了 解 高 階 語 言 和 低 階 語 言 之 間 的 分 別 知 道 翻 譯 程 式 的 意 義 和 能 夠 把 翻 譯 程 式 分 類 為 : 匯 編 程 式 編 譯 程 式 和 解 譯 程 式 認 識 不 同 翻 譯 程 式 的 優 點 和 缺 點 程 式 是 指 揮 電 腦 的 指

More information

Microsoft Word - 苹果脚本跟我学.doc

Microsoft Word - 苹果脚本跟我学.doc AppleScript for Absolute Starters 2 2 3 0 5 1 6 2 10 3 I 13 4 15 5 17 6 list 20 7 record 27 8 II 32 9 34 10 36 11 44 12 46 13 51 14 handler 57 15 62 63 3 AppleScript AppleScript AppleScript AppleScript

More information

基于UML建模的管理管理信息系统项目案例导航——VB篇

基于UML建模的管理管理信息系统项目案例导航——VB篇 PowerBuilder 8.0 PowerBuilder 8.0 12 PowerBuilder 8.0 PowerScript PowerBuilder CIP PowerBuilder 8.0 /. 2004 21 ISBN 7-03-014600-X.P.. -,PowerBuilder 8.0 - -.TP311.56 CIP 2004 117494 / / 16 100717 http://www.sciencep.com

More information

Guide to Install SATA Hard Disks

Guide to Install SATA Hard Disks SATA RAID 1. SATA. 2 1.1 SATA. 2 1.2 SATA 2 2. RAID (RAID 0 / RAID 1 / JBOD).. 4 2.1 RAID. 4 2.2 RAID 5 2.3 RAID 0 6 2.4 RAID 1.. 10 2.5 JBOD.. 16 3. Windows 2000 / Windows XP 20 1. SATA 1.1 SATA Serial

More information

科学计算的语言-FORTRAN95

科学计算的语言-FORTRAN95 科 学 计 算 的 语 言 -FORTRAN95 目 录 第 一 篇 闲 话 第 1 章 目 的 是 计 算 第 2 章 FORTRAN95 如 何 描 述 计 算 第 3 章 FORTRAN 的 编 译 系 统 第 二 篇 计 算 的 叙 述 第 4 章 FORTRAN95 语 言 的 形 貌 第 5 章 准 备 数 据 第 6 章 构 造 数 据 第 7 章 声 明 数 据 第 8 章 构 造

More information

IBM Rational ClearQuest Client for Eclipse 1/ IBM Rational ClearQuest Client for Ecl

IBM Rational ClearQuest Client for Eclipse   1/ IBM Rational ClearQuest Client for Ecl 1/39 Balaji Krish,, IBM Nam LeIBM 2005 4 15 IBM Rational ClearQuest ClearQuest Eclipse Rational ClearQuest / Eclipse Clien Rational ClearQuest Rational ClearQuest Windows Web Rational ClearQuest Client

More information

Tel: Fax: TTP-344M/246M /

Tel: Fax: TTP-344M/246M / TTP-344M/246M / True Type font David Turner, Robert Wilhelm Werner Lemberg The Free Type Project 235 16 8 2 i- TTP-344M/246M...1 1.1...1 1.2...1 1.2.1...1 1.2.2 /...2 1.2.3...2 1.2.4...2 1.3...3 1.4...3

More information

錄...1 說...2 說 說...5 六 率 POST PAY PREPAY DEPOSIT 更

錄...1 說...2 說 說...5 六 率 POST PAY PREPAY DEPOSIT 更 AX5000 Version 1.0 2006 年 9 錄...1 說...2 說...3...4 說...5 六...6 6.1 率...7 6.2 POST PAY...8 6.3 PREPAY DEPOSIT...9 6.4...10 6.5...11 更...12...12 LCD IC LED Flash 更 兩 RJ11 ( ) DC ON OFF ON 狀 狀 更 OFF 復 狀 說

More information

Microsoft Word - SupplyIT manual 3_cn_david.doc

Microsoft Word - SupplyIT manual 3_cn_david.doc MR PRICE Supply IT Lynette Rajiah 1 3 2 4 3 5 4 7 4.1 8 4.2 8 4.3 8 5 9 6 10 6.1 16 6.2 17 6.3 18 7 21 7.1 24 7.2 25 7.3 26 7.4 27 7.5 28 7.6 29 7.7 30 7.8 31 7.9 32 7.10 32 7.11 33 7.12 34 1 7.13 35 7.14

More information

,768 32,767 32K JMP Jnnn (386+) LOOP CALL [Label:] JMP short/near/far address L10: jmp jmp L20: L10 L20

,768 32,767 32K JMP Jnnn (386+) LOOP CALL [Label:] JMP short/near/far address L10: jmp jmp L20: L10 L20 (Jump) (Loop) (Conditional jump) CMP CALL AND SAR/SHR TEST JMP NOT SAL/SHL Jnnn* OR RCR/ROR LOOP XOR RCL/ROL RETn * nnn, JNE JL -128 127-32,768 32,767 32K JMP Jnnn (386+) LOOP CALL [Label:] JMP short/near/far

More information

Oracle Oracle Solaris Studio IDE makefile C C++ Fortran makefile IDE Solaris Linux C/C++/Fortran Oracle IDE "P

Oracle Oracle Solaris Studio IDE makefile C C++ Fortran makefile IDE Solaris Linux C/C++/Fortran Oracle IDE P Oracle Solaris Studio 12.3 IDE 2011 12 E26461-01 2 7 8 9 9 Oracle 10 12 14 21 26 27 29 31 32 33 Oracle Solaris Studio IDE makefile C C++ Fortran makefile IDE Solaris Linux C/C++/Fortran Oracle IDE "Project

More information

IP505SM_manual_cn.doc

IP505SM_manual_cn.doc IP505SM 1 Introduction 1...4...4...4...5 LAN...5...5...6...6...7 LED...7...7 2...9...9...9 3...11...11...12...12...12...14...18 LAN...19 DHCP...20...21 4 PC...22...22 Windows...22 TCP/IP -...22 TCP/IP

More information

Fun Time (1) What happens in memory? 1 i n t i ; 2 s h o r t j ; 3 double k ; 4 char c = a ; 5 i = 3; j = 2; 6 k = i j ; H.-T. Lin (NTU CSIE) Referenc

Fun Time (1) What happens in memory? 1 i n t i ; 2 s h o r t j ; 3 double k ; 4 char c = a ; 5 i = 3; j = 2; 6 k = i j ; H.-T. Lin (NTU CSIE) Referenc References (Section 5.2) Hsuan-Tien Lin Deptartment of CSIE, NTU OOP Class, March 15-16, 2010 H.-T. Lin (NTU CSIE) References OOP 03/15-16/2010 0 / 22 Fun Time (1) What happens in memory? 1 i n t i ; 2

More information

Bus Hound 5

Bus Hound 5 Bus Hound 5.0 ( 1.0) 21IC 2007 7 BusHound perisoft PC hound Bus Hound 6.0 5.0 5.0 Bus Hound, IDE SCSI USB 1394 DVD Windows9X,WindowsMe,NT4.0,2000,2003,XP XP IRP Html ZIP SCSI sense USB Bus Hound 1 Bus

More information

Windows RTEMS 1 Danilliu MMI TCP/IP QEMU i386 QEMU ARM POWERPC i386 IPC PC104 uc/os-ii uc/os MMI TCP/IP i386 PORT Linux ecos Linux ecos ecos eco

Windows RTEMS 1 Danilliu MMI TCP/IP QEMU i386 QEMU ARM POWERPC i386 IPC PC104 uc/os-ii uc/os MMI TCP/IP i386 PORT Linux ecos Linux ecos ecos eco Windows RTEMS 1 Danilliu MMI TCP/IP 80486 QEMU i386 QEMU ARM POWERPC i386 IPC PC104 uc/os-ii uc/os MMI TCP/IP i386 PORT Linux ecos Linux ecos ecos ecos Email www.rtems.com RTEMS ecos RTEMS RTEMS Windows

More information

HLA-B27軟體

HLA-B27軟體 HLA-B27 HLA-B27 CaliBRITE Beads FACSComp HLA-B27 Calibration Beads HLA-B27 HLA-B27 1. HLA-B27 1.1 HLA-B27 HLA Major Histocompatibity Complex MHC HLA HLA-A -B -C HLA HLA-D/DR -DP -DQ B HLA HLA HLA HLA-B27

More information

SST SPAC SST SoftICE SST89C5x/SST89x554RC /564RD /SST89x516/5xRD / SoftICE SoftICE MCU SoftICE SS

SST SPAC SST SoftICE SST89C5x/SST89x554RC /564RD /SST89x516/5xRD / SoftICE SoftICE MCU SoftICE SS SST SoftICE SST89C5x/SST89x554RC /564RD /SST89x516/5xRD2 1...2 1.1...2 1.2...2 1.3 /...2 2 SoftICE...2 3 SoftICE MCU...2 4 SoftICE...3 4.1 SST BootLoader SOFTICE...3 4.2 SoftICE SST MCU...6 5 SoftICE...7

More information

Chapter 2

Chapter 2 2 (Setup) ETAP PowerStation ETAP ETAP PowerStation PowerStation PowerPlot ODBC SQL Server Oracle SQL Server Oracle Windows SQL Server Oracle PowerStation PowerStation PowerStation PowerStation ETAP PowerStation

More information

(Guangzhou) AIT Co, Ltd V 110V [ ]! 2

(Guangzhou) AIT Co, Ltd V 110V [ ]! 2 (Guangzhou) AIT Co, Ltd 020-84106666 020-84106688 http://wwwlenxcn Xi III Zebra XI III 1 (Guangzhou) AIT Co, Ltd 020-84106666 020-84106688 http://wwwlenxcn 230V 110V [ ]! 2 (Guangzhou) AIT Co, Ltd 020-84106666

More information

PROFIBUS3.doc

PROFIBUS3.doc PLC PLC ProfiBus 3. PROFIBUS-DP PROFIBUS-DP PROFIBUS-DP PROFIBUS S7 STEP7 SIMATIC NET S5 COM PROFIBUS COM5431 PROFIBUS-DP GSD GSD *.GSD *. GSE GSD S7 STEP7 PROFIBUS DP S7-400 CPU416-2DP S7-200 PROFIBUS

More information

DR2010.doc

DR2010.doc DR/2010 HACH 11-8-96-2 HACH. DR/2010, / UL E79852 CSA C22.223 LR 58275 VDE GS 1015-92 FCC"A" 15 : AMADOR CORP, HACH. EN50 011/CISPR 11 "B" (EMI)/89/336/EEC/EMC: AMADOR CORP, HACH.. EN50 082-1( )/89/226/EEC

More information

Abstract arm linux tool-chain root NET-Start! 2

Abstract arm linux tool-chain root NET-Start! 2 Lab III - Embedding Linux 1 Abstract arm linux tool-chain root NET-Start! 2 Part 1.4 Step1. tool-chain 4 Step2. PATH 4 Part 2 kernel 5 Step1. 5 Step2... 6 Step3...8 Part 3 root. 8 Step1. 8 Step2. 8 Part

More information

入學考試網上報名指南

入學考試網上報名指南 入 學 考 試 網 上 報 名 指 南 On-line Application Guide for Admission Examination 16/01/2015 University of Macau Table of Contents Table of Contents... 1 A. 新 申 請 網 上 登 記 帳 戶 /Register for New Account... 2 B. 填

More information

: WICE-PIC 1.1 WICE-PIC 1.2 WICE-PIC : WICE-PIC WICE-PIC 2.5 WICE-PIC 2.6 : : : : A. B.E.V.Board 1. Internet Internet WWW: http//

: WICE-PIC 1.1 WICE-PIC 1.2 WICE-PIC : WICE-PIC WICE-PIC 2.5 WICE-PIC 2.6 : : : : A. B.E.V.Board 1. Internet Internet WWW: http// : WICE-PIC 1.1 WICE-PIC 1.2 WICE-PIC : WICE-PIC 2.1 2.2 2.3 2.4 WICE-PIC 2.5 WICE-PIC 2.6 : : : : A. B.E.V.Board 1. Internet Internet WWW: http//www.leap.com.tw 2. : TEL: 886-2-7884800 FAX: 886-2-6512307

More information

Cadence SPB 15.2 VOICE Cadence SPB 15.2 PC Cadence 3 (1) CD1 1of 2 (2) CD2 2of 2 (3) CD3 Concept HDL 1of 1

Cadence SPB 15.2 VOICE Cadence SPB 15.2 PC Cadence 3 (1) CD1 1of 2 (2) CD2 2of 2 (3) CD3 Concept HDL 1of 1 Cadence SPB 15.2 VOICE 2005-05-07 Cadence SPB 15.2 PC Cadence 3 (1) CD1 1of 2 (2) CD2 2of 2 (3) CD3 Concept HDL 1of 1 1 1.1 Cadence SPB 15.2 2 Microsoft 1.1.1 Windows 2000 1.1.2 Windows XP Pro Windows

More information

coverage2.ppt

coverage2.ppt Satellite Tool Kit STK/Coverage STK 82 0715 010-68745117 1 Coverage Definition Figure of Merit 2 STK Basic Grid Assets Interval Description 3 Grid Global Latitude Bounds Longitude Lines Custom Regions

More information

K7VT2_QIG_v3

K7VT2_QIG_v3 ............ 1 2 3 4 5 [R] : Enter Raid setup utility 6 Press[A]keytocreateRAID RAID Type: JBOD RAID 0 RAID 1: 2 7 RAID 0 Auto Create Manual Create: 2 RAID 0 Block Size: 16K 32K

More information

CC213

CC213 : (Ken-Yi Lee), E-mail: feis.tw@gmail.com 49 [P.51] C/C++ [P.52] [P.53] [P.55] (int) [P.57] (float/double) [P.58] printf scanf [P.59] [P.61] ( / ) [P.62] (char) [P.65] : +-*/% [P.67] : = [P.68] : ,

More information

AN INTRODUCTION TO PHYSICAL COMPUTING USING ARDUINO, GRASSHOPPER, AND FIREFLY (CHINESE EDITION ) INTERACTIVE PROTOTYPING

AN INTRODUCTION TO PHYSICAL COMPUTING USING ARDUINO, GRASSHOPPER, AND FIREFLY (CHINESE EDITION ) INTERACTIVE PROTOTYPING AN INTRODUCTION TO PHYSICAL COMPUTING USING ARDUINO, GRASSHOPPER, AND FIREFLY (CHINESE EDITION ) INTERACTIVE PROTOTYPING 前言 - Andrew Payne 目录 1 2 Firefly Basics 3 COMPONENT TOOLBOX 目录 4 RESOURCES 致谢

More information

Serial ATA ( Silicon Image SiI3114)...2 (1) SATA... 2 (2) B I O S S A T A... 3 (3) RAID BIOS RAID... 5 (4) S A T A... 8 (5) S A T A... 10

Serial ATA ( Silicon Image SiI3114)...2 (1) SATA... 2 (2) B I O S S A T A... 3 (3) RAID BIOS RAID... 5 (4) S A T A... 8 (5) S A T A... 10 Serial ATA ( Silicon Image SiI3114)...2 (1) SATA... 2 (2) B I O S S A T A... 3 (3) RAID BIOS RAID... 5 (4) S A T A... 8 (5) S A T A... 10 Ác Åé å Serial ATA ( Silicon Image SiI3114) S A T A (1) SATA (2)

More information

穨Scholar使用手冊.PDF

穨Scholar使用手冊.PDF (Content) (ChemPort Connnection) 3D ( Windows ) (Substructure Module) (Web Site) (Requirements) (Main Menu) (Main Menu Toolbar) (Explore Dialog Box) (Saving Files) (Printing) SciFinder Scholar (Explore

More information

WebSphere Studio Application Developer IBM Portal Toolkit... 2/21 1. WebSphere Portal Portal WebSphere Application Server stopserver.bat -configfile..

WebSphere Studio Application Developer IBM Portal Toolkit... 2/21 1. WebSphere Portal Portal WebSphere Application Server stopserver.bat -configfile.. WebSphere Studio Application Developer IBM Portal Toolkit... 1/21 WebSphere Studio Application Developer IBM Portal Toolkit Portlet Doug Phillips (dougep@us.ibm.com),, IBM Developer Technical Support Center

More information

f2.eps

f2.eps 前 言, 目 录 产 品 概 况 1 SICAM PAS SICAM 电 力 自 动 化 系 统 配 置 和 使 用 说 明 配 置 2 操 作 3 实 时 数 据 4 人 机 界 面 5 SINAUT LSA 转 换 器 6 状 态 与 控 制 信 息 A 版 本 号 : 08.03.05 附 录, 索 引 安 全 标 识 由 于 对 设 备 的 特 殊 操 作 往 往 需 要 一 些 特 殊 的

More information

INTRODUCTION TO COM.DOC

INTRODUCTION TO COM.DOC How About COM & ActiveX Control With Visual C++ 6.0 Author: Curtis CHOU mahler@ms16.hinet.net This document can be freely release and distribute without modify. ACTIVEX CONTROLS... 3 ACTIVEX... 3 MFC ACTIVEX

More information

C/C++ - 文件IO

C/C++ - 文件IO C/C++ IO Table of contents 1. 2. 3. 4. 1 C ASCII ASCII ASCII 2 10000 00100111 00010000 31H, 30H, 30H, 30H, 30H 1, 0, 0, 0, 0 ASCII 3 4 5 UNIX ANSI C 5 FILE FILE 6 stdio.h typedef struct { int level ;

More information

mvc

mvc Build an application Tutor : Michael Pan Application Source codes - - Frameworks Xib files - - Resources - ( ) info.plist - UIKit Framework UIApplication Event status bar, icon... delegation [UIApplication

More information

Text 文字输入功能 , 使用者可自行定义文字 高度, 旋转角度 , 行距 , 字间距离 和 倾斜角度。

Text 文字输入功能 , 使用者可自行定义文字  高度, 旋转角度 , 行距 , 字间距离 和 倾斜角度。 GerbTool Wise Software Solution, Inc. File New OPEN CLOSE Merge SAVE SAVE AS Page Setup Print Print PreView Print setup (,, IMPORT Gerber Wizard Gerber,Aperture Gerber Gerber, RS-274-D, RS-274-X, Fire9000

More information

Microsoft PowerPoint - C15_LECTURE_NOTE_04.ppt

Microsoft PowerPoint - C15_LECTURE_NOTE_04.ppt MACHINE LANGUAGE CODING AND THE DEBUG SOFTWARE DEVELOPMENT PROGRAM OF THE PC General instruction format for machine code 611 37100 微處理機原理與應用 Lecture 04-4 MACHINE LANGUAGE CODING AND THE DEBUG SOFTWARE

More information

Microsoft PowerPoint - C15_LECTURE_NOTE_04.ppt

Microsoft PowerPoint - C15_LECTURE_NOTE_04.ppt MACHINE LANGUAGE CODING AND THE DEBUG SOFTWARE DEVELOPMENT PROGRAM OF THE PC MACHINE LANGUAGE CODING AND THE DEBUG SOFTWARE DEVELOPMENT PROGRAM OF THE PC 4.1 Converting Assembly Language Instructions to

More information

, 7, Windows,,,, : ,,,, ;,, ( CIP) /,,. : ;, ( 21 ) ISBN : -. TP CIP ( 2005) 1

, 7, Windows,,,, : ,,,, ;,, ( CIP) /,,. : ;, ( 21 ) ISBN : -. TP CIP ( 2005) 1 21 , 7, Windows,,,, : 010-62782989 13501256678 13801310933,,,, ;,, ( CIP) /,,. : ;, 2005. 11 ( 21 ) ISBN 7-81082 - 634-4... - : -. TP316-44 CIP ( 2005) 123583 : : : : 100084 : 010-62776969 : 100044 : 010-51686414

More information

1-1 SH79F6431 A. 2( ) 9~15V ( 12V) U2 U3 3.3V SH79F B. 1(VCC/GND) SH79F6431 C. VDDIO SH79F6431 P4 P5 P0.6 P0.7 VDDIO VDDIO=5V D. 2 V 1.0

1-1 SH79F6431 A. 2( ) 9~15V ( 12V) U2 U3 3.3V SH79F B. 1(VCC/GND) SH79F6431 C. VDDIO SH79F6431 P4 P5 P0.6 P0.7 VDDIO VDDIO=5V D. 2 V 1.0 SH79F6431 1. SH79F6431 1T 8051 FLASH SH79F JET51 Keil µ vision JTAG 1.1. SH79F6431 LQFP64 1.2. (Target Board) SH79F6431 1 V 1.0 1-1 SH79F6431 A. 2( ) 9~15V ( 12V) U2 U3 3.3V SH79F6431 1 2 1 B. 1(VCC/GND)

More information

Microsoft PowerPoint - Lecture7II.ppt

Microsoft PowerPoint - Lecture7II.ppt Lecture 8II SUDOKU PUZZLE SUDOKU New Play Check 軟體實作與計算實驗 1 4x4 Sudoku row column 3 2 } 4 } block 1 4 軟體實作與計算實驗 2 Sudoku Puzzle Numbers in the puzzle belong {1,2,3,4} Constraints Each column must contain

More information

Microsoft Word - InoTouch Editor编程软件手册2012.2.10.doc

Microsoft Word - InoTouch Editor编程软件手册2012.2.10.doc 目 录 第 一 章 关 于 InoTouch Editor 编 程 软 件 的 安 装... - 6-1.1 InoTouch 系 列 HMI 和 InoTouch Editor 软 件 的 简 介... - 6-1.2 安 装 InoTouch Editor 编 程 软 件... - 10-1.3 系 统 连 接 图... - 12-1.4 InoTouch 系 列 人 机 界 面 的 系 统 设

More information

2 2 3 DLight CPU I/O DLight Oracle Solaris (DTrace) C/C++ Solaris DLight DTrace DLight DLight DLight C C++ Fortran CPU I/O DLight AM

2 2 3 DLight CPU I/O DLight Oracle Solaris (DTrace) C/C++ Solaris DLight DTrace DLight DLight DLight C C++ Fortran CPU I/O DLight AM Oracle Solaris Studio 12.2 DLight 2010 9 2 2 3 DLight 3 3 6 13 CPU 16 18 21 I/O DLight Oracle Solaris (DTrace) C/C++ Solaris DLight DTrace DLight DLight DLight C C++ Fortran CPU I/O DLight AMP Apache MySQL

More information

Symantec™ Sygate Enterprise Protection 防护代理安装使用指南

Symantec™ Sygate Enterprise Protection 防护代理安装使用指南 Symantec Sygate Enterprise Protection 防 护 代 理 安 装 使 用 指 南 5.1 版 版 权 信 息 Copyright 2005 Symantec Corporation. 2005 年 Symantec Corporation 版 权 所 有 All rights reserved. 保 留 所 有 权 利 Symantec Symantec 徽 标 Sygate

More information

Microsoft Word - OPIGIMAC 譯本.doc

Microsoft Word - OPIGIMAC 譯本.doc OPISYSTEMS OPIGIMAC 系 統 使 用 說 明 使 用 者 手 冊 OPI 版 本 7.0.X 140705 翻 譯 版 本 V1.0 Table of Contents 頁 數 1. 簡 介 3 2. 系 統 需 求 4 3. 安 裝 4 4. 開 始 OPIGIMAC 5 5. 功 能 列 7 6. 功 能 圖 示 鍵 10 7. 重 點 操 作 說 明 13 7-1. 設 定

More information

BC04 Module_antenna__ doc

BC04 Module_antenna__ doc http://www.infobluetooth.com TEL:+86-23-68798999 Fax: +86-23-68889515 Page 1 of 10 http://www.infobluetooth.com TEL:+86-23-68798999 Fax: +86-23-68889515 Page 2 of 10 http://www.infobluetooth.com TEL:+86-23-68798999

More information

四川省普通高等学校

四川省普通高等学校 四 川 省 普 通 高 等 学 校 计 算 机 应 用 知 识 和 能 力 等 级 考 试 考 试 大 纲 (2013 年 试 行 版 ) 四 川 省 教 育 厅 计 算 机 等 级 考 试 中 心 2013 年 1 月 目 录 一 级 考 试 大 纲 1 二 级 考 试 大 纲 6 程 序 设 计 公 共 基 础 知 识 6 BASIC 语 言 程 序 设 计 (Visual Basic) 9

More information

CA-C750К

CA-C750К 1 3 3 4 PC 4 USB 5 5 6 8 9 11 mediasync Manager?...13 mediasync Manager 15 25 38 39 41 41 DRM...44 Image Manager...44 47 49 49 50 50 51 51 51 52 / 52 A-B 53 MP3 53 /FM 54 FM 55 FM 55 BMP56 56 57 57 58

More information

audiogram3 Owners Manual

audiogram3 Owners Manual USB AUDIO INTERFACE ZH 2 AUDIOGRAM 3 ( ) * Yamaha USB Yamaha USB ( ) ( ) USB Yamaha (5)-10 1/2 AUDIOGRAM 3 3 MIC / INST (XLR ) (IEC60268 ): 1 2 (+) 3 (-) 2 1 3 Yamaha USB Yamaha Yamaha Steinberg Media

More information

C语言的应用.PDF

C语言的应用.PDF AVR C 9 1 AVR C IAR C, *.HEX, C,,! C, > 9.1 AVR C MCU,, AVR?! IAR AVR / IAR 32 ALU 1KBytes - 8MBytes (SPM ) 16 MBytes C C *var1, *var2; *var1++ = *--var2; AVR C 9 2 LD R16,-X ST Z+,R16 Auto (local

More information

Microsoft PowerPoint - C15_LECTURE_NOTE_05.ppt

Microsoft PowerPoint - C15_LECTURE_NOTE_05.ppt 8088/8086 MICROPROCSOR PROGRAMMING INTEGER INSTRUCTIONS AND COMPUTATIONS The MOVE The move (MOV) instruction is used to transfer a byte or a word of data from a source operand to a destination operand

More information

Microsoft PowerPoint - ch6 [相容模式]

Microsoft PowerPoint - ch6 [相容模式] UiBinder wzyang@asia.edu.tw UiBinder Java GWT UiBinder XML UI i18n (widget) 1 2 UiBinder HelloWidget.ui.xml: UI HelloWidgetBinder HelloWidget.java XML UI Owner class ( Composite ) UI XML UiBinder: Owner

More information

NEXT SDT2.51 C:\ARM251 SDT2.51 ARM SDT 2.51 ARM PROJECT MANAGER SDT 2

NEXT SDT2.51 C:\ARM251 SDT2.51 ARM SDT 2.51 ARM PROJECT MANAGER SDT 2 S3C44B0 SDT DRAGNBOY MICROSTAR ARM 51 ARM S3C44B0 ARM SDT2.51 IAR ADS SDT2.51 S3C44B0 LEDTEST SDT ARM 1 2 SDT embed.8800.org SDT2.51 SDT2.51 ARM ARM CPU ARM SDT ADS ADS MULTI-ICE SDT JTAG JTAG SDT SDT2.51

More information

SDP 1 2 3 4 8 9 10 12 19

SDP 1 2 3 4 8 9 10 12 19 SDP SDP 1 2 3 4 8 9 10 12 19 SDP 2 SDP CANBUS 3m/s 48 1 2 N 3 4 5 6 7 8 9 EMC EMC ENS008212 EN618003 10 IP21 SDP 3 1 1 4 2 5 3 P24 103 104 N24 G24 P24 101 102 N24 G24 J2 J3 n P2 P1 P3 J2 J1 J3 1 P2 P1

More information

Simulator By SunLingxi 2003

Simulator By SunLingxi 2003 Simulator By SunLingxi sunlingxi@sina.com 2003 windows 2000 Tornado ping ping 1. Tornado Full Simulator...3 2....3 3. ping...6 4. Tornado Simulator BSP...6 5. VxWorks simpc...7 6. simulator...7 7. simulator

More information

untitled

untitled Verilog 1 錄 料 7. 邏 8. 料流 9. 行 10. 令 11. 邏 路 例 2 1. Verilog 路 (Flexibility) 易 更 更 易 連 林 數 (Portability) 不 不 易 C 3 2. Verilog Verilog (model) (switch level) (transistor) 邏 (gate level) 料流 (data flow) (register

More information

Microsoft Word - 第3章.doc

Microsoft Word - 第3章.doc Java C++ Pascal C# C# if if if for while do while foreach while do while C# 3.1.1 ; 3-1 ischeck Test() While ischeck while static bool ischeck = true; public static void Test() while (ischeck) ; ischeck

More information

User’s Manual

User’s Manual V7 用 户 手 册 亿 图 为 您 专 业 图 表 设 计 提 供 最 佳 解 决 方 案 2004-2014 EdrawSoft. All right reserved. Edraw and Edraw logo are registered trademarks of EdrawSoft. 目 录 亿 图 怎 样 优 越 于 其 他 软 件... 5 亿 图 7 个 新 功 能... 6 为

More information

USB - 1 - - 2 - - 3 - - 4 - - 5 - - 6 - - 7 - DES Module FSM CONTROLLER 8 6 8 Key ROM 8 8 Data_in RAM Data_out RAM 8 USB Board - 8 - - 9 - - 10 - - 11 - - 12 - USB device INF Windows INF Device Function

More information

ebook111-4

ebook111-4 Flash 4 Flash 4 F l a s h 5 Flash 4 Flash Flash 4 Flash 4 Flash 4 4.1 Flash 4 Flash 4 Flash 4 Flash Flash 4 Flash 4 4.2 Flash 4 Flash 4 A Flash 4 S h i f t F i l e P r e f e r e n c e s > > Flash 4 Flash

More information

untitled

untitled Verilog HDL Verilog HDL 邏 令 列邏 路 例 練 數 度 (top-down design) 行 (concurrency) 2.1 Verilog HDL (module) 邏 HDL 理 HDL 邏 料 數 邏 邏 路 module module_name (port_list) // 列 //

More information

Microsoft Word - PHP7Ch01.docx

Microsoft Word - PHP7Ch01.docx PHP 01 1-6 PHP PHP HTML HTML PHP CSSJavaScript PHP PHP 1-6-1 PHP HTML PHP HTML 1. Notepad++ \ch01\hello.php 01: 02: 03: 04: 05: PHP 06:

More information

USING MAYA ANIMATION Keyset set Maya sets partitions MEL MEL copykey cutkey pastekey scalekey snapkey keytangent bakeresults MEL Command Reference Edi

USING MAYA ANIMATION Keyset set Maya sets partitions MEL MEL copykey cutkey pastekey scalekey snapkey keytangent bakeresults MEL Command Reference Edi 9 61 62 65 67 69 69 71 74 76 Maya Edit > Keys > Paste Keys Maya 61 USING MAYA ANIMATION Keyset set Maya sets partitions MEL MEL copykey cutkey pastekey scalekey snapkey keytangent bakeresults MEL Command

More information

untitled

untitled niosii H:\DB2005\project\niosDK\Example\NiosSmall QuartusII4.2 File -> New Project Wizard Diectory,Name,Top-Level Entity Add Files EDA Tools Setting Finish, OK H:\DB2005\project\niosDK\Example\NiosSmall

More information

2.5 idlocs PIC idloc idloc 0x1234 ; 0x config idloc HEX errorlevel errorlevel Error (Warning) Message HEX 3-14 errorlevel

2.5 idlocs PIC idloc idloc 0x1234 ; 0x config idloc HEX errorlevel errorlevel Error (Warning) Message HEX 3-14 errorlevel 3.2.3 MPASM PIC 35 35 #include include #include MPASM include PIC MPLAB C:\Program Files\MPLAB IDE\MCHIP_Tools PIC.inc 3-01 #include ; PIC16F877A #include math.asm ; 3-01 MPASM MPLAB

More information

概述

概述 OPC Version 1.6 build 0910 KOSRDK Knight OPC Server Rapid Development Toolkits Knight Workgroup, eehoo Technology 2002-9 OPC 1...4 2 API...5 2.1...5 2.2...5 2.2.1 KOS_Init...5 2.2.2 KOS_InitB...5 2.2.3

More information

Microsoft Word - Datastream5.1_使用說明201110

Microsoft Word - Datastream5.1_使用說明201110 Datastream 5.1 操 作 手 冊 政 大 圖 書 館 商 圖 分 館 編 製 2011.10 版 權 屬 於 國 立 政 治 大 學 圖 書 館. 請 勿 侵 權 1 目 錄 前 言 -------------------------------------------------------------2 第 壹 章 Datastream advanced -----------------------------------2

More information