Microsoft PowerPoint - C15_LECTURE_NOTE_04.ppt

Size: px
Start display at page:

Download "Microsoft PowerPoint - C15_LECTURE_NOTE_04.ppt"

Transcription

1 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 Machine Code 4.2 Encoding a Complete Program in Machine Code 4.3 The PC and Its DEBUG Program 4.4 Examining and Modifying the Contents of Memory 4.5 Input and Output of Data 微處理機原理與應用 Lecture

2 THE DEBUG, A SOFTWARE DEVELOPMENT PROGRAM FOR THE PC 4.6 Hexadecimal Addition and Subtraction 4.7 Loading, Verifying and Saving Machine Language Program 4.8 Assembling Instructions with the Assemble Command 4.9 Executing Instructions and Programs with the TRACE and GO command 4.10 Debugging a Program 微處理機原理與應用 Lecture Converting Assembly Language Instructions to Machine Code General instruction format for machine code 微處理機原理與應用 Lecture

3 4.1 Converting Assembly Language Instructions to Machine Code Byte 1 specification Opcode field (6-bits) Specifies the operation to be performed Register direction bit (D-bit) 1 the register operand is a destination operand 0 the register operand is a source operand Data size bit (W-bit) 1 16-bit data size 0 8-bit data size 微處理機原理與應用 Lecture Converting Assembly Language Instructions to Machine Code Byte 2 specification Mode (MOD) field (2-bits) Together with R/M field to specify the second operand Register (REG) field (3-bit) Identifies the register for the first operand Register/Memory (R/M) field (3-bit) Register (REG) field encoding 微處理機原理與應用 Lecture

4 4.1 Converting Assembly Language Instructions to Machine Code Byte 2 specification MOD field and R/M field encoding 微處理機原理與應用 Lecture Converting Assembly Language Instructions to Machine Code MOV BL, AL Encode the above instruction in machine code OPCODE = (for MOV), D = 0 (source), W = 0 (8-bit) This leads to BYTE 1 = = In byte 2 the source operand, specified by REG, is AL REG = 000, MOD = 11, R/M = 011 Therefore, BYTE 2 = = C3 16 MOV BL, AL = 88C 微處理機原理與應用 Lecture

5 4.1 Converting Assembly Language Instructions to Machine Code ADD AX, [SI] Encode the above instruction in machine code OPCODE = (for ADD), D = 1 (dest.), W = 1 (16-bit) This leads to BYTE 1 = = In byte 2 the destination operand, specified by REG, is AX REG = 000, MOD = 00, R/M = 100 Therefore, BYTE 2 = = ADD AX, [SI] = 微處理機原理與應用 Lecture Converting Assembly Language Instructions to Machine Code XOR CL, [1234H] Encode the above instruction in machine code OPCODE = (for XOR), D = 1 (dest.), W = 0 (8-bit) This leads to BYTE 1 = = In byte 2 the destination operand, specified by REG, is CL REG = 001, MOD = 00, R/M = 110 Therefore, BYTE 2 = = 0E 16 BYTE 3 = BYTE 4 = XOR CL, [1234H] = 320E 微處理機原理與應用 Lecture

6 4.1 Converting Assembly Language Instructions to Machine Code ADD [BX][DI]+1234H, AX Encode the above instruction in machine code OPCODE = (for ADD), D = 0 (source), W = 1 (16-bit) This leads to BYTE 1 = = In byte 2 the destination operand, specified by REG, is AX REG = 000, MOD = 10, R/M = 001 Therefore, BYTE 2 = = BYTE 3 = BYTE 4 = ADD [BX][DI]+1234H, AX = 微處理機原理與應用 Lecture Converting Assembly Language Instructions to Machine Code Additional one-bit field and their functions Field S V Z Value Function No sign extension Sign extend 8-bit immediate data to 16 bits if W=1 Shift/rotate count is one Shift/rotate count is specified in CL register Repeat/loop while zero flag is clear Repeat/loop while zero flag is set Instructions that involve a segment register (SR-field) Register ES CS SS DS 微處理機原理與應用 Lecture SR

7 4.1 Converting Assembly Language Instructions to Machine Code MOV WORD PTR [BP][DI]+1234H, 0ABCDH Encode the above instruction in machine code This example does not follow the general format From Fig. 3-1 MOV -> W, and W = 1 for word-size data BYTE 1 = = C7 16 BYTE 2 = (MOD)000(R/M) = = BYTE 3 = BYTE 4 = BYTE 5 = CD 16 BYTE 6 = AB 16 MOV WORD PTR [BP][DI]+1234H, 0ABCDH = C CDAB 微處理機原理與應用 Lecture Converting Assembly Language Instructions to Machine Code MOV [BP][DI]+1234H, DS Encode the above instruction in machine code This example does not follow the general format From Fig. 3-6 MOV -> , and the instruction is (MOD)0(SR)(R/M)(DISP) From Fig. 4-5 we find that for DS, the SR = 11 Therefore, the instruction is coded as MOV [BP][DI]+1234H, DS = =8C9B 微處理機原理與應用 Lecture

8 4.2 Encoding a Complete Program in Machine Code Steps in encoding a complete assembly program: Identify the general machine code format (Fig. 3-6) Evaluate the bit fields (Fig. 4-2,4-3,4-4,4-5) Express the binary-code instruction in hexadecimal form To execute the program, the machine code of the program must be stored in the code segment of memory. The first byte of the program is stored at the lowest address 微處理機原理與應用 Lecture Encoding a Complete Program in Machine Code Encode the block move program in Fig. 4-6(a) and show how it would be stored in memory starting at address MOV AX, 2000H MOV DS, AX MOV SI, 100H MOV DI, 120H MOV CX, 10H NXTPT: MOV AH, [SI] MOV [DI], AH INC SI INC DI DEC CX JNZ NXTPT NOP ;LOAD AX REGISTER ;LOAD DATA SEGMENT ADDRESS ;LOAD SOURCE BLOCK POINTER ;LOAD DESTINATION BLOCK POINTER ;LOAD REPEAT COUNTER ;MOVE SOURCE BLOCK ELEMENT TO AH ;MOVE ELEMENT FROM AH TO DEST. BLOCK ;INCREMENT SOURCE BLOCK POINTER ;INCREMENT DESTINATION BLOCK POINTER ;DECREMENT REPEAT COUNTER ;JUMP TO NXTPT IF CX NOT EQUAL TO ZERO ;NO OPERATION 微處理機原理與應用 Lecture

9 4.2 Encoding a Complete Program in Machine Code 微處理機原理與應用 Lecture Encoding a Complete Program in Machine Code 微處理機原理與應用 Lecture

10 4.3 The PC and Its DEBUG Program Using DEBUG, the programmer can issue commands to the microcomputer. Loading the DEBUG program C:\DEBUG Six kinds of information are entered as part of a command: A command letter An address A register name A file name A drive name Data 微處理機原理與應用 Lecture The PC and Its DEBUG Program The DEBUG program command set 微處理機原理與應用 Lecture

11 4.3 The PC and Its DEBUG Program An initial state when with the loading of DEBUG 0100 IP Memory 1342 CS 1342 DS 1342 SS 1342 ES 0000 AX 0000 BX 0000 CX 0000 DX Active code segment, data segment, stack segment, and extra segment (64 K bytes) FFEE SP 0000 BP 0000 SI 0000 DI 0040 Flags FFFFF 8088/8086 MPU 微處理機原理與應用 Lecture The PC and Its DEBUG Program Syntax for the REGISTER (R) command R [REGISTER NAME] e.g. -R AX ( ) AX 0000 :_ :00FF ( ) _ ;This alter the content of AX 微處理機原理與應用 Lecture

12 4.3 The PC and Its DEBUG Program Verify the initialized state of the 8088 by examining the contents of its registers with the Register command -R ( ) 微處理機原理與應用 Lecture The PC and Its DEBUG Program Register mnemonics for the R command Symbol AX BX CX DX SI DI SP BP CS DS SS ES F IP Register Accumulator register Base register Count register Data register Source index register Destination index register Stack pointer register Base pointer register Code segment register Data segment register Stack segment register Extra segment register Flag register Instruction pointer 微處理機原理與應用 Lecture

13 4.3 The PC and Its DEBUG Program Status flag notations Flag Meaning Set Reset OF Overflow OV NV DF Direction DN UP IF Interrupt EI DI SF Sign NG PL ZF Zero ZR NZ AF Auxiliary carry AC NA PF Parity PE PO CF Carry CY NC 微處理機原理與應用 Lecture The PC and Its DEBUG Program Issue commands to the DEBUG program on the PC that causes the value in BX to be modified to FF00 16 and then verify that this new value is loaded into BX. -R BX ( ) BX 0000 :FF00 ( ) -R BX ( ) BX FF00 :_ ( ) _ 微處理機原理與應用 Lecture

14 4.3 The PC and Its DEBUG Program Use the Register command to set the parity flag to even parity. Verify that the flag has been changed. -R F ( ) NV UP EI PL NZ NA PO NC -PE ( ) -R F ( ) NV UP EI PL NZ NA PE NC - ( ) 微處理機原理與應用 Lecture Examining and Modifying the Contents of Memory The commands provided for use in examining and modifying the memory: DUMP ENTER FILL MOVE COMPARE SERACH 微處理機原理與應用 Lecture

15 4.4 Examining and Modifying the Contents of Memory DUMP Command (D) The DUMP command allows us to examine the contents of a memory location or a block of consecutive memory location. D [ADDRESS] e.g. -D ( ) -D 1342:100 ( ) -D DS:100 ( ) -D 100 ( ) 微處理機原理與應用 Lecture Examining and Modifying the Contents of Memory DUMP Command (D) Address of the first byte of data ASCII version of the memory data 微處理機原理與應用 Lecture bytes of data per line, 128 bytes per dump 15

16 4.4 Examining and Modifying the Contents of Memory Issue a dump command to display the contents of the 32 bytes of memory located at offset through 031F 16 in the current data segment. -D F ( ) 微處理機原理與應用 Lecture Examining and Modifying the Contents of Memory Use the Dump command to examine the 16 bytes of memory just below the top of the stack. -D SS:FFEE FFFD ( ) 微處理機原理與應用 Lecture

17 4.4 Examining and Modifying the Contents of Memory ENTER Command (E) E ADDRESS [LIST] e.g. -E DS:100 FF FF FF FF FF ( ) -E DS:100 ( ) -1342:0100 FF. _ ( ) (Return to end) -E DS:100 ( ) -1342:0100 FF. _ (Space bar to continue) -1342:0100 FF. FF._ 微處理機原理與應用 Lecture Examining and Modifying the Contents of Memory Start a data entry sequence by examining the contents of address DS:100 and then, without entering new data, depress the - key. What happen? -E DS:100 ( ) 1342:0100 FF. _ Entering - causes the display of previous byte storage location 微處理機原理與應用 Lecture

18 4.4 Examining and Modifying the Contents of Memory Enter ASCII data to the memory. -E DS:200 ASCII ( ) -E DS:200 ASCII ( ) 微處理機原理與應用 Lecture Examining and Modifying the Contents of Memory FILL Command (F) The FILL command fills a block of consecutive memory locations all with the same data. F STARTING_ADDRESS ENDING_ADDRESS LIST e.g. -F F 22 ( ) 微處理機原理與應用 Lecture

19 4.4 Examining and Modifying the Contents of Memory Initialize all storage locations in the block of memory from DS:120 through DS:13F with the value and the block of storage locations from DS:140 to DS:15F with the value F F 33 ( ) -F F 44 ( ) 微處理機原理與應用 Lecture Examining and Modifying the Contents of Memory MOVE Command (M) The MOVE command allows us to copy a block of data from one part of memory to another part. M START_ADDRESS END_ADDRESS DEST_ADDRESS e.g. -M F 200 ( ) 微處理機原理與應用 Lecture

20 4.4 Examining and Modifying the Contents of Memory Fill each storage location in the block of memory from address DS:100 through DS:11F with the value Then copy this block of data to a destination block starting at DS:160. -F F 11 ( ) -M F 160 ( ) 微處理機原理與應用 Lecture Examining and Modifying the Contents of Memory COMPARE Command (C) The COMPARE command allows us to compare the contents of two blocks of data to determine if they are or are not the same. C START_ADDRESS END_ADDRESS DEST_ADDRESS e.g. -C F 120 ( ) 微處理機原理與應用 Lecture

21 4.4 Examining and Modifying the Contents of Memory COMPARE Command (C) Results produced when unequal data are found with a COMPARE command 微處理機原理與應用 Lecture Examining and Modifying the Contents of Memory SEARCH Command (S) The SEARCH command can be used to scan through a block of data in memory to determine whether or not it contains specific data. C START_ADDRESS END_ADDRESS LIST e.g. -S F 33 ( ) 微處理機原理與應用 Lecture

22 4.4 Examining and Modifying the Contents of Memory SEARCH Command (S) 微處理機原理與應用 Lecture Input and Output of Data INPUT Command (I) The INPUT command read data from an input port of the 64K byte-wide ports of 8088 I/O. I ADDRESS e.g. -I 61 ( ) 4D The contents of the port ant I/O address are 4D 微處理機原理與應用 Lecture

23 4.5 Input and Output of Data OUTPUT Command (O) The OUTPUT command write data to an input port of the 64K byte-wide ports of 8088 I/O. O ADDRESS BYTE e.g. -O 61 4F ( ) This command causes the value 4F 16 to be written into the byte-wide output port at address 微處理機原理與應用 Lecture Hexadecimal Addition and Subtraction HEXADECIMAL Command (H) The HEXADECIMAL command provides the ability to add and subtract hexadecimal numbers. H NUM1 NUM2 e.g. -H ABC0 0FFF ( ) BBBF 9BC1 -H BBBF A ( ) BBC9 BBB5 *Both number and results are limited to four hexadecimal digits 微處理機原理與應用 Lecture

24 4.6 Hexadecimal Addition and Subtraction Use the H command to find the negative of the number H 0 9 ( ) 0009 FFF7 FFF7 16 is the negative of 9 16 expressed in 2 s complement form 微處理機原理與應用 Lecture Hexadecimal Addition and Subtraction If a byte of data is located at physical address 02A34 16 and the data segment register contains , what value must be loaded into the source index register such that DS:SI points to the byte storage location? -H 2A ( ) 3F This shows that SI must be loaded with the value 微處理機原理與應用 Lecture

25 4.7 Loading, Verifying and Saving Machine Language Program An example to load an instruction MOV BL, AL The machine code is 88C3 16 -E CS: C3 ( ) -D CS: ( ) 1342: C 微處理機原理與應用 Lecture Loading, Verifying and Saving Machine Language Program UNASSEMBLE Command (U) The UNASSEMBLE command converts machine code instructions to their equivalent assembly language source statement. U [STARTING_ADDRESS [ENDING_ADDRESS] ] e.g. -U CS: ( ) 1342: C3 MOV BL, AL 微處理機原理與應用 Lecture

26 4.7 Loading, Verifying and Saving Machine Language Program Use a sequence of commands to load, verify loading, and unassemble the machine code instruction 0304H. Load the instruction at address CS:200. -E CS: ( ) -D CS: ( ) -U CS: ( ) ADD AX, [SI] 微處理機原理與應用 Lecture Loading, Verifying and Saving Machine Language Program WRITE Command (W) The WRITE command gives the ability to save data stored in memory on a diskette. W [START_ADDRESS [DRIVE START_SECTOR NUM_SECTOR] ] e.g. -W CS: ( ) -W ( ) Drive B 1 Sector = 512 Byte * Be caution in saving program in a disk, especially the hard drive 微處理機原理與應用 Lecture

27 4.7 Loading, Verifying and Saving Machine Language Program LOAD Command (L) The LOAD command gives the ability to reload memory from a diskette. L [START_ADDRESS [DRIVE START_SECTOR NUM_SECTOR] ] e.g. -L CS: ( ) The reloading of the instruction can be verified by U command e.g. -U CS: ( ) 1342: ADD AX, [SI] 微處理機原理與應用 Lecture Loading, Verifying and Saving Machine Language Program Enter the machine code of the block move program. The program is to be loaded into memory starting at address CS:100. Verify, unassemble, and save the code. -E CS:100 B E D8 BE BF B A ( ) -D CS: ( ) -U CS: ( ) -W CS: ( ) 微處理機原理與應用 Lecture

28 4.7 Loading, Verifying and Saving Machine Language Program 微處理機原理與應用 Lecture Loading, Verifying and Saving Machine Language Program NAME Command (N) The NAME command, along with the WRITE command, gives the ability to save a program on the diskette under a file name. N FILE NAME The BX, CX registers must be updated to identify the size of the program that is to be saved in the file. After BX, CX registers have been initialized, the write command is used to saved the program. To reload the program, the command sequence is N FILE NAME L [STARTING ADDRESS] 微處理機原理與應用 Lecture

29 4.7 Loading, Verifying and Saving Machine Language Program Save a machine code program into a file. -N A:BLK.1 ( ) ; Give a file name in disk A -R CX ( ) ; Give a program size of bytes CX XXXX :18 -R BX ( ) BX XXXX :0 ( ) W CS:100 ( ) ; Save the program in disk A 微處理機原理與應用 Lecture Loading, Verifying and Saving Machine Language Program Reload a program into memory. -N A:BLK.1 ( ) ; Give a file name in disk A -L CS:100 ( ) ; Load the program name BLK.1 in disk A C:\DOS>REN A:BLK.1 BLK.EXE ( ) ; Rename the file C:\DOS>DEBUG A:BLK.EXE ( ) ; Load the program directly C:\DOS>A:BLK.EXE ( ) ; Run the program 微處理機原理與應用 Lecture

30 4.8 Assembling Instructions with the Assemble Command ASSEMBLE Command (A) The ASSEMBLE command let us automatically assemble the instructions of a program. A [STARTING_ADDRESS] e.g. -A CS:100 ( ) 1342:0100 _ 1342:0100 ADD [BX+SI+1234], AX ( ) 1342:0104 _ -D CS: ( ) 微處理機原理與應用 Lecture Assembling Instructions with the Assemble Command Assemble a complete program with the ASSEMBLE command. -A CS:200 ( ) 0B35:0200 MOV AX, 2000 ( ) 0B35:0203 MOV DS, AX ( ) 0B35:0205 MOB SI, 100 ( ) B35:0217 NOP ( ) 0B35:0218 ( ) 微處理機原理與應用 Lecture

31 4.8 Assembling Instructions with the Assemble Command Assemble a program with ASSEMBLE command 微處理機原理與應用 Lecture Assembling Instructions with the Assemble Command Unassemble a program with UNASSEMBLE command 微處理機原理與應用 Lecture

32 4.9 Executing Instructions and Programs with the TRACE and GO command TRACE Command (T) The TRACE command provides the programmer with the ability to execute the program one instruction at a time. T [=STARTING_ADDRESS] [NUMBER] e.g. -T =CS:100 ( ) -T ( ) -T =CS:100 3 ( ) 微處理機原理與應用 Lecture Executing Instructions and Programs with the TRACE and GO command Load and trace a program. -L CS: ( ) -U ( ) -R AX ( ) AX 0000 :1111 ( ) -R SI ( ) SI 0000 :1234 ( ) -E DS: ( ) -T =CS:100 ( ) 微處理機原理與應用 Lecture

33 4.9 Executing Instructions and Programs with the TRACE and GO command 微處理機原理與應用 Lecture Executing Instructions and Programs with the TRACE and GO command GO Command (G) The GO command is typically used to run programs that are already working or to execute programs in the later stages or debugging. G [=STARTING_ADDRESS [BREAKPOINT_ADDRESS_LIST] ] e.g. -G =CS: ( ) -G =CS:100 ( ) -G ( ) 微處理機原理與應用 Lecture

34 4.9 Executing Instructions and Programs with the TRACE and GO command Use GO command to execute a program and examine the result. -N A:BLK.EXE ( ) ; Define the program file to be loaded -L CS:200 ( ) ; Load the program at CS:200 -R DS ( ) DS 1342 :2000 ( ) ; Define the data segment address -F DS:100 10F FF ( ) ; Fill memory with FF -F DS:120 12F 00 ( ) ; Fill memory with 00 -R DS ( ) DS 2000 :1342 ; Store data segment with 微處理機原理與應用 Lecture Executing Instructions and Programs with the TRACE and GO command Use GO command to execute a program and examine the result. (continued) -R ( ) ; Show data register status -U CS: ( ) ; Unassemble the program -G =CS:200 20E ( ) ; Execute the program to CS:20E -G =CS:20E 215 ( ) ; Execute the program to CS:215 -D DS:100 10F ( ) ; Display memory at DS:100 -D DS:120 12F ( ) ; Display memory at DS:120 -G =CS: ( ) ; Execute the program to CS:217 -D DS:100 10F ( ) ; Display memory at DS:100 -D DS:120 12F ( ) ; Display memory at DS: 微處理機原理與應用 Lecture

35 4.9 Executing Instructions and Programs with the TRACE and GO command 微處理機原理與應用 Lecture Executing Instructions and Programs with the TRACE and GO command 微處理機原理與應用 Lecture

36 4.9 Executing Instructions and Programs with the TRACE and GO command 微處理機原理與應用 Lecture Debugging a Program Errors in a program are also referred to as bugs; the process of removing them is called debugging. Two types of errors Syntax error Execution error A syntax error is an error caused by not following the rules for coding or entering an instruction. These types of errors are typically identified by the microcomputer and signaled to user with an error message In the DEBUG environment, the TRACE command is usually used to debug execution errors 微處理機原理與應用 Lecture

37 4.10 Debugging a Program Review of the DEBUG commands 微處理機原理與應用 Lecture

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

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

Microsoft PowerPoint - C15_LECTURE_NOTE_05.ppt 8088/8086 MICROPROCESSOR PROGRAMMING INTEGER INSTRUCTIONS AND COMPUTATIONS 8088/8086 MICROPROCESSOR PROGRAMMING INTEGER INSTRUCTIONS AND COMPUTATIONS 5.1 Data-Transfer Instructions 5.2 Arithmetic Instructions

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

Microsoft PowerPoint - C15_LECTURE_NOTE_06 8088/8086 MICROPROCESSOR PROGRAMMING CONTROL FLOW INSTRUCTIONS AND PROGRAM STRUCTURES 8088/8086 MICROPROCESSOR PROGRAMMING CONTROL FLOW INSTRUCTIONS AND PROGRAM STRUCTURES 61 Flag-Control 62 Compare 63

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

Microsoft PowerPoint - C15_LECTURE_NOTE_06

Microsoft PowerPoint - C15_LECTURE_NOTE_06 61 Flag-Control 8088/8086 MICROPROCESSOR PROGRAMMING CONTROL FLOW INSTRUCTIONS AND PROGRAM STRUCTURES LAHF SAHF CLC STC CMC CLI STI Load AH from flags Store AH into flags Clear carry flag Set carry flag

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

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

幻灯片 1

幻灯片 1 3 8086 Tel:2656809 tjx@csu.edu.cn 2005-9-14 1 2005-9-14 2 8086 8 8086 8086 7 2005-9-14 3 PC 2005-9-14 4 2005-9-14 5 81616 2005-9-14 6 [ ] MOV AX, 3064H AX=3064H 16AX OP 64H 30H 2005-9-14 7 16 AX BX CX

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

PowerPoint Presentation

PowerPoint Presentation TOEFL Practice Online User Guide Revised September 2009 In This Guide General Tips for Using TOEFL Practice Online Directions for New Users Directions for Returning Users 2 General Tips To use TOEFL Practice

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

Microsoft PowerPoint - os_4.ppt

Microsoft PowerPoint - os_4.ppt 行 程 資 科 系 林 偉 川 行 程 概 念 行 程 與 程 式 主 要 的 不 同 點 : 程 式 是 被 放 在 外 部 的 儲 存 裝 置 如 磁 碟 上, 而 行 程 則 被 放 在 記 憶 體 中 程 式 在 儲 存 裝 置 中 是 靜 態 的, 而 行 程 在 記 憶 體 中 是 動 態 的, 它 會 隨 著 一 些 事 件 的 發 生 而 產 生 相 對 的 改 變 行 程, 就 是

More information

穨control.PDF

穨control.PDF TCP congestion control yhmiu Outline Congestion control algorithms Purpose of RFC2581 Purpose of RFC2582 TCP SS-DR 1998 TCP Extensions RFC1072 1988 SACK RFC2018 1996 FACK 1996 Rate-Halving 1997 OldTahoe

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

els0xu_zh_nf_v8.book Page Wednesday, June, 009 9:5 AM ELS-0/0C.8

els0xu_zh_nf_v8.book Page Wednesday, June, 009 9:5 AM ELS-0/0C.8 els0xu_zh_nf_v8.book Page Wednesday, June, 009 9:5 AM ELS-0/0C.8 Yamaha ELS-0/0C..8 LCD ELS-0/0C v. typeu LCD ELS-0/0C typeu / -6 / [SEARCH] / - ZH ELS-0/0C.8 els0xu_zh_nf_v8.book Page Wednesday, June,

More information

Microsoft PowerPoint - CA_02 Chapter5 Part-I_Single _V2.ppt

Microsoft PowerPoint - CA_02 Chapter5 Part-I_Single _V2.ppt Chapter5- The Processor: Datapath and Control (Single-cycle implementation) 臺大電機系吳安宇教授 V. 3/27/27 V2. 3/29/27 For 27 DSD Course 臺大電機吳安宇教授 - 計算機結構 Outline 5. Introduction 5.2 Logic Design Conventions 5.3

More information

Microsoft PowerPoint - C15_LECTURE_NOTE_11

Microsoft PowerPoint - C15_LECTURE_NOTE_11 INTERRUPT INTERFACE OF THE 8088 AND 8086 MICROPROCESSOR INTERRUPT INTERFACE OF THE 8088 AND 8086 MICROPROCESSOR 11.1 Interrupt Mechanism, Types and Priority 11.2 Interrupt Vector Table 11.3 Interrupt Instructions

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

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

Improved Preimage Attacks on AES-like Hash Functions: Applications to Whirlpool and Grøstl

Improved Preimage Attacks on AES-like Hash Functions: Applications to Whirlpool and Grøstl SKLOIS (Pseudo) Preimage Attack on Reduced-Round Grøstl Hash Function and Others Shuang Wu, Dengguo Feng, Wenling Wu, Jian Guo, Le Dong, Jian Zou March 20, 2012 Institute. of Software, Chinese Academy

More information

Chn 116 Neh.d.01.nis

Chn 116 Neh.d.01.nis 31 尼 希 米 书 尼 希 米 的 祷 告 以 下 是 哈 迦 利 亚 的 儿 子 尼 希 米 所 1 说 的 话 亚 达 薛 西 王 朝 二 十 年 基 斯 流 月 *, 我 住 在 京 城 书 珊 城 里 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

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

Important Notice SUNPLUS TECHNOLOGY CO. reserves the right to change this documentation without prior notice. Information provided by SUNPLUS TECHNOLO

Important Notice SUNPLUS TECHNOLOGY CO. reserves the right to change this documentation without prior notice. Information provided by SUNPLUS TECHNOLO Car DVD New GUI IR Flow User Manual V0.1 Jan 25, 2008 19, Innovation First Road Science Park Hsin-Chu Taiwan 300 R.O.C. Tel: 886-3-578-6005 Fax: 886-3-578-4418 Web: www.sunplus.com Important Notice SUNPLUS

More information

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

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

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

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 PowerPoint - STU_EC_Ch08.ppt

Microsoft PowerPoint - STU_EC_Ch08.ppt 樹德科技大學資訊工程系 Chapter 8: Counters Shi-Huang Chen Fall 2010 1 Outline Asynchronous Counter Operation Synchronous Counter Operation Up/Down Synchronous Counters Design of Synchronous Counters Cascaded Counters

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

TX-NR3030_BAS_Cs_ indd

TX-NR3030_BAS_Cs_ indd TX-NR3030 http://www.onkyo.com/manual/txnr3030/adv/cs.html Cs 1 2 3 Speaker Cable 2 HDMI OUT HDMI IN HDMI OUT HDMI OUT HDMI OUT HDMI OUT 1 DIGITAL OPTICAL OUT AUDIO OUT TV 3 1 5 4 6 1 2 3 3 2 2 4 3 2 5

More information

<4D6963726F736F667420506F776572506F696E74202D20B5DAD2BBD5C228B4F2D3A1B0E6292E707074205BBCE6C8DDC4A3CABD5D>

<4D6963726F736F667420506F776572506F696E74202D20B5DAD2BBD5C228B4F2D3A1B0E6292E707074205BBCE6C8DDC4A3CABD5D> Homeworks ( 第 三 版 ):.4 (,, 3).5 (, 3).6. (, 3, 5). (, 4).4.6.7 (,3).9 (, 3, 5) Chapter. Number systems and codes 第 一 章. 数 制 与 编 码 . Overview 概 述 Information is of digital forms in a digital system, and

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

入學考試網上報名指南

入學考試網上報名指南 入 學 考 試 網 上 報 名 指 南 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

Microsoft Word - HC20138_2010.doc

Microsoft Word - HC20138_2010.doc Page: 1 of 7 Date: April 26, 2010 WINMATE COMMUNICATION INC. 9 F, NO. 111-6, SHING-DE RD., SAN-CHUNG CITY, TAIPEI, TAIWAN, R.O.C. The following merchandise was submitted and identified by the vendor as:

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

Microsoft PowerPoint - STU_EC_Ch04.ppt

Microsoft PowerPoint - STU_EC_Ch04.ppt 樹德科技大學資訊工程系 Chapter 4: Boolean Algebra and Logic Simplification Shi-Huang Chen Fall 200 Outline Boolean Operations and Expressions Laws and Rules of Boolean Algebra DeMorgan's Theorems Boolean Analysis

More information

CC213

CC213 : (Ken-Yi Lee), E-mail: feis.tw@gmail.com 9 [P.11] : Dev C++ [P.12] : http://c.feis.tw [P.13] [P.14] [P.15] [P.17] [P.23] Dev C++ [P.24] [P.27] [P.34] C / C++ [P.35] 10 C / C++ C C++ C C++ C++ C ( ) C++

More information

1 CPU

1 CPU 2000 Tel 82316285 82317634 Mail liuxd@buaa.edu.cn 1 CPU 2 CPU 7 72 A B 85 15 3 1/2 M301 2~17 : 3/4 1/2 323 IBM PC 1. 2. 3. 1. 2. 3. 1.1 Hardware Software 1.2 M3 M2 M1 1.2 M3 M1 M2 M2 M1 M1 M1 1.2 M3 M1

More information

<4D6963726F736F667420576F7264202D20C7B6C8EBCABDCFB5CDB3C9E8BCC6CAA6B0B8C0FDB5BCD1A75FD1F9D5C22E646F63>

<4D6963726F736F667420576F7264202D20C7B6C8EBCABDCFB5CDB3C9E8BCC6CAA6B0B8C0FDB5BCD1A75FD1F9D5C22E646F63> 因 为 路 过 你 的 路, 因 为 苦 过 你 的 苦, 所 以 快 乐 着 你 的 快 乐, 追 逐 着 你 的 追 逐 内 容 简 介 本 书 根 据 2005 年 下 半 年 实 施 的 全 国 计 算 机 技 术 与 软 件 专 业 技 术 资 格 ( 水 平 ) 考 试 嵌 入 式 系 统 设 计 师 级 考 试 大 纲 精 神, 在 深 入 研 究 历 年 计 算 机 技 术 与 软

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

(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

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

2015 Chinese FL Written examination

2015 Chinese FL Written examination Victorian Certificate of Education 2015 SUPERVISOR TO ATTACH PROCESSING LABEL HERE Letter STUDENT NUMBER CHINESE FIRST LANGUAGE Written examination Monday 16 November 2015 Reading time: 11.45 am to 12.00

More information

Ác Åé å Serial ATA ( Sil3132) S A T A (1) SATA (2) BIOS SATA (3)* RAID BIOS RAID (4) SATA (5) SATA (a) S A T A ( S A T A R A I D ) (b) (c) Windows XP

Ác Åé å Serial ATA ( Sil3132) S A T A (1) SATA (2) BIOS SATA (3)* RAID BIOS RAID (4) SATA (5) SATA (a) S A T A ( S A T A R A I D ) (b) (c) Windows XP Serial ATA ( Sil3132)...2 (1) SATA... 2 (2) B I O S S A T A... 3 (3) RAID BIOS RAID... 6 (4) S A T A... 10 (5) S A T A... 12 Ác Åé å Serial ATA ( Sil3132) S A T A (1) SATA (2) BIOS SATA (3)* RAID BIOS

More information

HCD0174_2008

HCD0174_2008 Reliability Laboratory Page: 1 of 5 Date: December 23, 2008 WINMATE COMMUNICATION INC. 9 F, NO. 111-6, SHING-DE RD., SAN-CHUNG CITY, TAIPEI, TAIWAN, R.O.C. The following merchandise was submitted and identified

More information

CANVIO_AEROCAST_CS_EN.indd

CANVIO_AEROCAST_CS_EN.indd 简 体 中 文...2 English...4 SC5151-A0 简 体 中 文 步 骤 2: 了 解 您 的 CANVIO AeroCast CANVIO AeroCast 无 线 移 动 硬 盘 快 速 入 门 指 南 欢 迎 并 感 谢 您 选 择 TOSHIBA 产 品 有 关 您 的 TOSHIBA 产 品 的 详 情, 请 参 阅 包 含 更 多 信 息 的 用 户 手 册 () 安

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

Gerotor Motors Series Dimensions A,B C T L L G1/2 M G1/ A 4 C H4 E

Gerotor Motors Series Dimensions A,B C T L L G1/2 M G1/ A 4 C H4 E Gerotor Motors Series Size CC-A Flange Options-B Shaft Options-C Ports Features 0 0 5 5 1 0 1 0 3 3 0 0 SAE A 2 Bolt - (2) 4 Bolt Magneto (4) 4 Bolt Square (H4) 1.0" Keyed (C) 25mm Keyed (A) 1.0' 6T Spline

More information

User ID 150 Password - User ID 150 Password Mon- Cam-- Invalid Terminal Mode No User Terminal Mode No User Mon- Cam-- 2

User ID 150 Password - User ID 150 Password Mon- Cam-- Invalid Terminal Mode No User Terminal Mode No User Mon- Cam-- 2 Terminal Mode No User User ID 150 Password - User ID 150 Password Mon- Cam-- Invalid Terminal Mode No User Terminal Mode No User Mon- Cam-- 2 Mon1 Cam-- Mon- Cam-- Prohibited M04 Mon1 Cam03 Mon1 Cam03

More information

Microsoft Word - HSK使用手册.doc

Microsoft Word - HSK使用手册.doc HSK / New HSK Online Mock Test/Practices Student User Manual Table of contents New User... 2 1.1 Register... 2 1.2 Login... 3 1.3 Homepage... 4 Free Test... 4 2.1 Start... 5 2.2 Results... 6 Mock Test...

More information

Panaboard Overlayer help

Panaboard Overlayer help Panaboard Overlayer Image Capture Software for Electronic Whiteboard (Panaboard) ... 3... 5... 6... 13...14 Panaboard Overlayer 1. 2. 3. 4. 4-1. 4-2. [ / ] ( ) 4-3. 5. 6. 6-1. 6-2. [ / ] ( ) 7. Panaboard

More information

untitled

untitled EDM12864-GR 1 24 1. ----------------------------------------------------3 2. ----------------------------------------------------3 3. ----------------------------------------------------3 4. -------------------------------------------------------6

More information

LSC操作说明

LSC操作说明 1 C H R I S T A L P H A 1-4 LSC 型 Part. No. 102041 A L P H A 2-4 LSC 型 Part. No. 10204 冷 冻 干 燥 机 操 作 说 明 新 研 制 的 LSC-8 控 制 器, 具 备 图 形 显 示 功 能, 能 以 数 据 表 形 式 显 示 参 数, 并 可 选 配 控 制 软 件 LSC-8 1/4 VGA 大 屏 幕

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

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

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

EC51/52 GSM /GPRS MODEN

EC51/52 GSM /GPRS MODEN EC51/52 GSM /GPRS MODEN AT SMS aoe EC66.com 2004.11 ... 2 1 GSM AT... 3 2 EC51... 4 3 PDU... 4 4 PDU... 5 5... 7 6 TEXT... 8 7... 9 8.... 9 9.... 9 http://www.ec66.com/ 1 AT GPRS Modem SMS AT EC51 EC52

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

Microsoft Word - ChineseSATII .doc

Microsoft Word - ChineseSATII .doc 中 文 SAT II 冯 瑶 一 什 么 是 SAT II 中 文 (SAT Subject Test in Chinese with Listening)? SAT Subject Test 是 美 国 大 学 理 事 会 (College Board) 为 美 国 高 中 生 举 办 的 全 国 性 专 科 标 准 测 试 考 生 的 成 绩 是 美 国 大 学 录 取 新 生 的 重 要 依

More information

Microsoft Word - CX VMCO 3 easy step v1.doc

Microsoft Word - CX VMCO 3 easy step v1.doc Abacus Fully Automated Process of VMCO on CX, KA, CPH & KAH 16 Nov 2009 To streamline the VMCO handling on CX, KA, CPH & KAH, Abacus is pleased to inform you that manual submission of VMCO to CX/KA/CPH/KAH

More information

ch_code_infoaccess

ch_code_infoaccess 地 產 代 理 監 管 局 公 開 資 料 守 則 2014 年 5 月 目 錄 引 言 第 1 部 段 數 適 用 範 圍 1.1-1.2 監 管 局 部 門 1.1 紀 律 研 訊 1.2 提 供 資 料 1.3-1.6 按 慣 例 公 布 或 供 查 閱 的 資 料 1.3-1.4 應 要 求 提 供 的 資 料 1.5 法 定 義 務 及 限 制 1.6 程 序 1.7-1.19 公 開 資

More information

KillTest 质量更高 服务更好 学习资料 半年免费更新服务

KillTest 质量更高 服务更好 学习资料   半年免费更新服务 KillTest 质量更高 服务更好 学习资料 http://www.killtest.cn 半年免费更新服务 Exam : ICDL-Excel Title : The ICDL L4 excel exam Version : DEMO 1 / 11 1. Which one of the following formulas would be appropriate to calculate the

More information

Tel:010-62981668-2930 1

Tel:010-62981668-2930  1 Access 93C46 with SPI function V1.0.0 Jan. 31, 2005 http://www.sunplusmcu.com Tel:010-62981668-2930 http://www.sunplusmcu.com E-mail:mcu@sunplus.com.cn 1 0 0...2 1...3 2...4 2.1...4 2.2...5 3...6 3.1 AT93C46...6

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

lan03_yen

lan03_yen IEEE 8. LLC Logical Link Control ll rights reserved. No part of this publication and file may be reproduced, stored in a retrieval system, or transmitted in any form or by any means, electronic, mechanical,

More information

Some experiences in working with Madagascar: installa7on & development Tengfei Wang, Peng Zou Tongji university

Some experiences in working with Madagascar: installa7on & development Tengfei Wang, Peng Zou Tongji university Some experiences in working with Madagascar: installa7on & development Tengfei Wang, Peng Zou Tongji university Map data @ Google Reproducible research in Madagascar How to conduct a successful installation

More information

Gerolor Motors Series Dimensions A,B C T L L G1/2 M8 G1/ A 4 C H4 E

Gerolor Motors Series Dimensions A,B C T L L G1/2 M8 G1/ A 4 C H4 E Gerolor Motors Series Size CC-A Flange Options-B Shaft Options-C Ports Features 0 0 12 12 1 1 0 0 2 2 31 31 0 0 SAE A 2 Bolt - (2) 4 Bolt Magneto (4) 4 Bolt Square (H4) 1.0" Keyed (C) 2mm Keyed (A) 1.0'

More information

untitled

untitled Co-integration and VECM Yi-Nung Yang CYCU, Taiwan May, 2012 不 列 1 Learning objectives Integrated variables Co-integration Vector Error correction model (VECM) Engle-Granger 2-step co-integration test Johansen

More information

Untitled-3

Untitled-3 SEC.. Separable Equations In each of problems 1 through 8 solve the given differential equation : ü 1. y ' x y x y, y 0 fl y - x 0 fl y - x 0 fl y - x3 3 c, y 0 ü. y ' x ^ y 1 + x 3 x y 1 + x 3, y 0 fl

More information

快乐蜂(Jollibee)快餐连锁店 的国际扩张历程

快乐蜂(Jollibee)快餐连锁店 的国际扩张历程 Case6 Jollibee Foods Corporation Jollibee FAN Libo Case Synopsis (1) The case opens with a trigger issue focused on three investment decisions facing the international division new manager, Noli Tingzon.

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

KDC-U5049 KDC-U4049 Made for ipod, and Made for iphone mean that an electronic accessory has been designed to connect specifically to ipod, or iphone,

KDC-U5049 KDC-U4049 Made for ipod, and Made for iphone mean that an electronic accessory has been designed to connect specifically to ipod, or iphone, KDC-U5049 KDC-U4049 Made for ipod, and Made for iphone mean that an electronic accessory has been designed to connect specifically to ipod, or iphone, respectively, and has been certified by the developer

More information

Preface This guide is intended to standardize the use of the WeChat brand and ensure the brand's integrity and consistency. The guide applies to all d

Preface This guide is intended to standardize the use of the WeChat brand and ensure the brand's integrity and consistency. The guide applies to all d WeChat Search Visual Identity Guidelines WEDESIGN 2018. 04 Preface This guide is intended to standardize the use of the WeChat brand and ensure the brand's integrity and consistency. The guide applies

More information

IP TCP/IP PC OS µclinux MPEG4 Blackfin DSP MPEG4 IP UDP Winsock I/O DirectShow Filter DirectShow MPEG4 µclinux TCP/IP IP COM, DirectShow I

IP TCP/IP PC OS µclinux MPEG4 Blackfin DSP MPEG4 IP UDP Winsock I/O DirectShow Filter DirectShow MPEG4 µclinux TCP/IP IP COM, DirectShow I 2004 5 IP TCP/IP PC OS µclinux MPEG4 Blackfin DSP MPEG4 IP UDP Winsock I/O DirectShow Filter DirectShow MPEG4 µclinux TCP/IP IP COM, DirectShow I Abstract The techniques of digital video processing, transferring

More information

Microsoft PowerPoint - Eisenstein_ABET_Presentation_Beijing_Oct_2007-Chinese.ppt [兼容模式]

Microsoft PowerPoint - Eisenstein_ABET_Presentation_Beijing_Oct_2007-Chinese.ppt [兼容模式] Bruce Eisenstein 博 士 是 Drexel 大 学 电 气 和 计 算 机 工 程 系 的 Arthur J. Rowland 教 授, 同 时 是 电 气 和 计 算 机 工 程 系 的 前 任 系 主 任 (1980-1995) 他 是 一 个 受 尊 敬 的 IEEE 的 领 导 者, 在 2000 年 担 任 IEEE 的 主 席 在 担 任 主 席 以 前,Eisenstein

More information

從篤加有二「區」談當代平埔文化復振現相

從篤加有二「區」談當代平埔文化復振現相 從 篤 加 有 二 邱 談 族 群 正 名 運 動 從 篤 加 有 二 邱 談 族 群 正 名 運 動 陳 榮 輝 台 南 女 子 技 術 學 院 通 識 教 育 中 心 講 師 摘 要 本 文 從 篤 加 村 非 平 埔 族 裔 的 正 名 運 動, 探 討 篤 加 村 民 因 不 認 同 廟 後 區 ( 邱 ) 所 形 成 的 平 埔 族 裔 概 念, 從 地 理 變 遷 村 廟 沿 革 族 譜

More information

投影片 1

投影片 1 2 理 1 2-1 CPU 2-2 CPU 理 2-3 CPU 類 2 什 CPU CPU Central Processing Unit ( 理 ), 理 (Processor), CPU 料 ( 例 ) 邏 ( 例 ),, 若 了 CPU, 3 什 CPU CPU 了, 行, 利 CPU 力 來 行 4 什 CPU 5 2-2-1 CPU CPU 了 (CU, Control Unit) / 邏

More information

SuperMap 系列产品介绍

SuperMap 系列产品介绍 wuzhihong@scu.edu.cn 3 / 1 / 16 / John M. Yarbrough: Digital Logic Applications and Design + + 30% 70% 1 CHAPTER 1 Digital Concepts and Number Systems 1.1 Digital and Analog: Basic Concepts P1 1.1 1.1

More information

Logitech Wireless Combo MK45 English

Logitech Wireless Combo MK45 English Logitech Wireless Combo MK45 Setup Guide Logitech Wireless Combo MK45 English................................................................................... 7..........................................

More information

Oracle 4

Oracle 4 Oracle 4 01 04 Oracle 07 Oracle Oracle Instance Oracle Instance Oracle Instance Oracle Database Oracle Database Instance Parameter File Pfile Instance Instance Instance Instance Oracle Instance System

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

IP Access Lists IP Access Lists IP Access Lists

IP Access Lists IP Access Lists IP Access Lists Chapter 10 Access Lists IP Access Lists IP Access Lists IP Access Lists Security) IP Access Lists Access Lists (Network router For example, RouterA can use an access list to deny access from Network 4

More information

VASP应用运行优化

VASP应用运行优化 1 VASP wszhang@ustc.edu.cn April 8, 2018 Contents 1 2 2 2 3 2 4 2 4.1........................................................ 2 4.2..................................................... 3 5 4 5.1..........................................................

More information

C++ 程式設計

C++ 程式設計 C C 料, 數, - 列 串 理 列 main 數串列 什 pointer) 數, 數, 數 數 省 不 不, 數 (1) 數, 不 數 * 料 * 數 int *int_ptr; char *ch_ptr; float *float_ptr; double *double_ptr; 數 (2) int i=3; int *ptr; ptr=&i; 1000 1012 ptr 數, 數 1004

More information

MATLAB 1

MATLAB 1 MATLAB 1 MATLAB 2 MATLAB PCI-1711 / PCI-1712 MATLAB PCI-1711 / PCI-1712 MATLAB The Mathworks......1 1...........2 2.......3 3................4 4. DAQ...............5 4.1. DAQ......5 4.2. DAQ......6 5.

More information

Microsoft Word - 先玉335 copy.doc

Microsoft Word - 先玉335 copy.doc http://news.xinhuanet.com/herald/2010-09/21/c_13522940.htm 2010-09-21 12:11:10 335 335 PH4CV 3 10 300 50 20 100 5 8 5 8 20 16 10 4 10 1/3 4 3 4 2 22 8 60 50 6 13 7 21 21 13 1 13 10 2 9 100 80 10 70 335

More information

Edge-Triggered Rising Edge-Triggered ( Falling Edge-Triggered ( Unit 11 Latches and Flip-Flops 3 Timing for D Flip-Flop (Falling-Edge Trigger) Unit 11

Edge-Triggered Rising Edge-Triggered ( Falling Edge-Triggered ( Unit 11 Latches and Flip-Flops 3 Timing for D Flip-Flop (Falling-Edge Trigger) Unit 11 Latches and Flip-Flops 11.1 Introduction 11.2 Set-Reset Latch 11.3 Gated D Latch 11.4 Edge-Triggered D Flip-Flop 11.5 S-R Flip-Flop 11.6 J-K Flip-Flop 11.7 T Flip-Flop 11.8 Flip-Flops with additional Inputs

More information

Microsoft Word RCE MP_Year Book.doc

Microsoft Word RCE MP_Year Book.doc Continuing Education Mandarin Program Our high quality and systematic Mandarin Programs in our beautiful city of Richmond In this Issue: June 8 th, 2013 School Info....1-2 Student Articles.. 3-23 Mandarin

More information

科学计算的语言-FORTRAN95

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

More information

國 立 政 治 大 學 教 育 學 系 2016 新 生 入 學 手 冊 目 錄 表 11 國 立 政 治 大 學 教 育 學 系 博 士 班 資 格 考 試 抵 免 申 請 表... 46 論 文 題 目 申 報 暨 指 導 教 授... 47 表 12 國 立 政 治 大 學 碩 博 士 班 論

國 立 政 治 大 學 教 育 學 系 2016 新 生 入 學 手 冊 目 錄 表 11 國 立 政 治 大 學 教 育 學 系 博 士 班 資 格 考 試 抵 免 申 請 表... 46 論 文 題 目 申 報 暨 指 導 教 授... 47 表 12 國 立 政 治 大 學 碩 博 士 班 論 國 立 政 治 大 學 教 育 學 系 2016 新 生 入 學 手 冊 目 錄 一 教 育 學 系 簡 介... 1 ( 一 ) 成 立 時 間... 1 ( 二 ) 教 育 目 標 與 發 展 方 向... 1 ( 三 ) 授 課 師 資... 2 ( 四 ) 行 政 人 員... 3 ( 五 ) 核 心 能 力 與 課 程 規 劃... 3 ( 六 ) 空 間 環 境... 12 ( 七 )

More information

國家圖書館典藏電子全文

國家圖書館典藏電子全文 i ii Abstract The most important task in human resource management is to encourage and help employees to develop their potential so that they can fully contribute to the organization s goals. The main

More information

3 (s05q6) The diagram shows the velocity-time graph for a lift moving between floors in a building. The graph consists of straight line segments. In t

3 (s05q6) The diagram shows the velocity-time graph for a lift moving between floors in a building. The graph consists of straight line segments. In t Mechnics (9709) M1 Topic 1 : s-t and v-t graph(9) Name: Score: Time: 1 (s03q3) The diagram shows the velocity-time graphs for the motion of two cyclists P and Q, whotravel in the same direction along a

More information

2. 3. 1 2 TI 3 TI TABLE 4 RANDBIN 5 6 172 6 Research of Modern Basic Education 2012 6

2. 3. 1 2 TI 3 TI TABLE 4 RANDBIN 5 6 172 6 Research of Modern Basic Education 2012 6 6 2012 6 Research of Modern Basic Education Vol. 6 June 2012 201200 20 1. G 1976-171 2. 3. 1 2 TI 3 TI TABLE 4 RANDBIN 5 6 172 6 Research of Modern Basic Education 2012 6 1 GPS 4. 01 TI - nspire cx 1.

More information

ebook140-9

ebook140-9 9 VPN VPN Novell BorderManager Windows NT PPTP V P N L A V P N V N P I n t e r n e t V P N 9.1 V P N Windows 98 Windows PPTP VPN Novell BorderManager T M I P s e c Wi n d o w s I n t e r n e t I S P I

More information

Chapter 9: Objects and Classes

Chapter 9: Objects and Classes What is a JavaBean? JavaBean Java JavaBean Java JavaBean JComponent tooltiptext font background foreground doublebuffered border preferredsize minimumsize maximumsize JButton. Swing JButton JButton() JButton(String

More information

1505.indd

1505.indd 上 海 市 孙 中 山 宋 庆 龄 文 物 管 理 委 员 会 上 海 宋 庆 龄 研 究 会 主 办 2015.05 总 第 148 期 图 片 新 闻 2015 年 9 月 22 日, 由 上 海 孙 中 山 故 居 纪 念 馆 台 湾 辅 仁 大 学 和 台 湾 图 书 馆 联 合 举 办 的 世 纪 姻 缘 纪 念 孙 中 山 先 生 逝 世 九 十 周 年 及 其 革 命 历 程 特 展

More information