Microsoft PowerPoint - C15_LECTURE_NOTE_05.ppt

Size: px
Start display at page:

Download "Microsoft PowerPoint - C15_LECTURE_NOTE_05.ppt"

Transcription

1 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 5.3 Logic Instructions 5.4 Shift Instructions 5.5 Rotate Instructions 微處理機原理與應用 Lecture

2 5.1 Data-Transfer Instructions The data-transfer functions provide the ability to move data either between its internal registers or between an internal register and a storage location in memory. The data-transfer functions include MOV (Move byte or word) XCHG (Exchange byte or word) XLAT (Translate byte) LEA (Load effective address) LDS (Load data segment) LES (Load extra segment) 微處理機原理與應用 Lecture Data-Transfer Instructions The MOVE Instruction The move (MOV) instruction is used to transfer a byte or a word of data from a source operand to a destination operand. Mnemonic Meaning Format Operation Flags affected MOV Move MOV D, S (S) (D) None e.g. MOV DX, CS MOV [SUM], AX 微處理機原理與應用 Lecture

3 5.1 Data-Transfer Instructions The MOVE Instruction Note that the MOV instruction cannot transfer data directly between external memory. Destination Accumulator Seg-reg Seg-reg Reg16 Source Accumulator Immediate Immediate Reg16 Mem16 Seg-reg Seg-reg Allowed operands for MOV instruction 微處理機原理與應用 Lecture Data-Transfer Instructions The MOVE Instruction MOV DX, CS 0100 IP 0100 CS 0200 DS SS ES Address Content 8C CA Instruction MOV DX, CS Next instruction AX BX CX DX SP BP SI DI 8088/8086 MPU Before execution 微處理機原理與應用 Lecture

4 5.1 Data-Transfer Instructions The MOVE Instruction MOV DX, CS 0102 IP 0100 CS 0200 DS SS ES Address Content 8C CA Instruction MOV DX, CS Next instruction AX BX CX 0100 DX SP BP SI DI 8088/8086 MPU After execution 微處理機原理與應用 Lecture Data-Transfer Instructions What is the effect of executing the instruction MOV CX, [SOURCE_MEM] Where SOURCE_MEM equal to is a memory location offset relative to the current data segment starting at 1A ((DS) ) (CL) ((DS) ) (CH) Therefore CL is loaded with the contents held at memory address 1A = 1A and CH is loaded with the contents of memory address 1A = 1A 微處理機原理與應用 Lecture

5 5.1 Data-Transfer Instructions Use the DEBUG the verify the previous example 微處理機原理與應用 Lecture Data-Transfer Instructions The XCHG Instruction The exchange (XCHG) instruction can be used to swap data between two general-purpose registers or between a generalpurpose register and a storage location in memory. Mnemonic Meaning Format Operation Flags affected XCHG Exchange XCHG D, S (D) (S) None e.g. XCHG AX, DX Destination Accumulator Source Reg 微處理機原理與應用 Lecture Allowed operands for XCHG instruction 5

6 5.1 Data-Transfer Instructions What is the result of executing the following instruction? XCHG [SUM], BX Where SUM = , (DS)= ((DS)0+SUM) (BX) PA = = Execution of the instruction performs the following 16-bit swap: ( ) (BL) ( ) (BH) So we get (BX) = 00FF 16 (SUM) = 11AA 微處理機原理與應用 Lecture Data-Transfer Instructions The XCHG Instruction XCHG [SUM], BX 0101 IP 1100 CS 1200 DS SS ES Address Content 87 1E Instruction XCHG [SUM],BX Next instruction AX 11 AA BX CX DX SP BP SI DI 8088/8086 MPU FF 00 Variable SUM Before execution 微處理機原理與應用 Lecture

7 5.1 Data-Transfer Instructions The XCHG Instruction XCHG [SUM], BX 0105 IP 1100 CS 1200 DS SS ES Address Content 87 1E Instruction XCHG [SUM],BX Next instruction AX 00 FF BX CX DX SP BP SI DI 8088/8086 MPU AA 11 Variable SUM After execution 微處理機原理與應用 Lecture Data-Transfer Instructions Use the DEBUG program to verify the previous example 微處理機原理與應用 Lecture

8 5.1 Data-Transfer Instructions Use the DEBUG program to verify the previous example 微處理機原理與應用 Lecture Data-Transfer Instructions The XLAT Instruction The translate (XLAT) instruction is used to simplify implementation of the lookup-table operation. Execution of the XLAT replaces the contents of AL by the contents of the accessed lookup-table location. Mnemonic Meaning Format Operation Flags affected XLAT Translate XLAT ((AL)+(BX)+(DS)0) (AL) None e.g. PA = (DS)0 + (BX) + (AL) = D 16 = 0310D 16 (0310D 16 ) (AL) 微處理機原理與應用 Lecture

9 5.1 Data-Transfer Instructions The LEA, LDS, and LES Instructions The LEA, LDS, LES instructions provide the ability to manipulate memory addresses by loading either a 16-bit offset address into a general-purpose register or a register together with a segment address into either DS or ES. Mnemonic Meaning Format Operation Flags affected LEA Load effective address LEA Reg16, EA EA (Reg16) None LDS Load register and DS LDS Reg16, Mem32 (Mem32) (Reg16) (Mem32+2) (DS) None LES Load register and ES LES Reg16,Mem32 (Mem32) (Reg16) (Mem32+2) (ES) None e.g. LEA SI, [DI+BX+5H] 微處理機原理與應用 Lecture Data-Transfer Instructions The LEA, LDS, and LES Instructions LDS SI, [200H] 0100 IP 1100 CS 1200 DS SS ES Address Content C Instruction LDS SI, [200H] Next instruction AX BX CX DX SP BP SI DI /8086 MPU Before execution 微處理機原理與應用 Lecture

10 5.1 Data-Transfer Instructions The LEA, LDS, and LES Instructions LDS SI, [200H] 0104 IP 1100 CS 1300 DS SS ES Address Content C Instruction LDS SI, [200H] Next instruction AX BX CX DX SP BP 0020 SI DI 8088/8086 MPU After execution 微處理機原理與應用 Lecture New data segment 5.1 Data-Transfer Instructions Verify the following instruction using DEBUG program. LDS SI, [200H] 微處理機原理與應用 Lecture

11 5.1 Data-Transfer Instructions Initializing the internal registers of the 8088 from a table in memory. MOV AX, [INIT_TABLE] MOV SS, AX LDS SI, [INIT_TABLE+02H] LES DI, [INIT_TABLE+06H] MOV AX, [INIT_TABLE+0AH] MOV BX, [INIT_TABLE+0CH] MOV CX, [INIT_TABLE+0EH] MOV DX, [INIT_TABLE+10H] 微處理機原理與應用 Lecture Arithmetic Instructions The arithmetic instructions include Addition Subtraction Multiplication Division Data formats Unsigned binary bytes Signed binary bytes Unsigned binary words Signed binary words Unpacked decimal bytes Packed decimal bytes ASCII numbers 微處理機原理與應用 Lecture

12 5.2 Arithmetic Instructions ADDITION ADD Add byte or word ADC Add byte or word with carry INC Increment byte or word by 1 AAA ASCII adjust for addition DAA Decimal adjust for addition SUBTRACTION SUB Subtract byte or word SBB Subtract byte or word with borrow DEC Decrement byte or word by 1 NEG Negate byte or word AAS ASCII adjust for subtraction DAS Decimal adjust for subtraction MULTIPLICATION MUL Multiply byte or word unsigned IMUL Integer multiply byte or word AAM ASCII adjust for multiply DIVISION DIV Divide byte or word unsigned IDIV Integer divide byte or word AAD ASCII adjust for division CBW Convert byte to word CWD Convert word to doubleword 微處理機原理與應用 Lecture Arithmetic Instructions Addition Instructions: ADD, ADC, INC, AAA, DAA Mnemonic Meaning Format Operation Flags affected ADD Addition ADD D, S (S) +(D) (D) Carry (CF) OF, SF, ZF, AF, PF, CF ADC Add with carry ADC D, S (S) +(D)+(CF) (D) Carry (CF) OF, SF, ZF, AF, PF, CF INC Increment by 1 INC D (D) +1 (D) OF, SF, ZF, AF, PF AAA ASCII adjust for addition AAA AF, CF OF, SF, ZF, PF undefined DAA Decimal adjust for addition DAA SF, ZF, AF, PF, CF, OF undefined 微處理機原理與應用 Lecture

13 5.2 Arithmetic Instructions Addition Instructions: ADD, ADC, INC, AAA, DAA Destination Accumulator Source Immediate Immediate Immediate Destination Reg16 Reg8 Allowed operands for ADD and ADC instructions Allowed operands for INC instruction 微處理機原理與應用 Lecture Arithmetic Instructions Assume that the AX and BX registers contain and 0ABC 16, respectively. What is the result of executing the instruction ADD AX, BX? (BX)+(AX)= 0ABC =1BBC 16 The sum ends up in destination register AX. That is (AX) = 1BBC 微處理機原理與應用 Lecture

14 5.2 Arithmetic Instructions Addition Instructions: ADD, ADC, INC, AAA, DAA ADD AX, BX 0100 IP 1100 CS 1200 DS SS ES Address Content 03 C3 Instruction ADD AX, BX Next instruction 1100 AX 0ABC BX CX DX SP BP SI DI 8088/8086 MPU Before execution 微處理機原理與應用 Lecture Arithmetic Instructions Addition Instructions: ADD, ADC, INC, AAA, DAA ADD AX, BX 0102 IP 1100 CS 1200 DS SS ES 1BBC AX 0ABC BX CX DX SP BP SI DI 8088/8086 MPU After execution 微處理機原理與應用 Lecture Address Content 03 C3 Instruction ADD AX, BX Next instruction 14

15 5.2 Arithmetic Instructions Verify the previous example using DEBUG program 微處理機原理與應用 Lecture Arithmetic Instructions The original contents of AX, BL, word-size memory location SUM, and carry flag (CF) are , AB 16, 00CD 16, and 0 16, respectively. Describe the results of executing the following sequence of instruction? ADD AX, [SUM] ADC BL, 05H INC WORD PTR [SUM] (AX) (AX)+(SUM) = CD 16 = (BL) (BL)+imm8+(CF) = AB = B0 16 (SUM) (SUM) = 00CD = 00CE 微處理機原理與應用 Lecture

16 5.2 Arithmetic Instructions What is the result of executing the following instruction sequence? ADD AL, BL AAA Assuming that AL contains (ASCII code for 2) and BL contains (ASCII code 4), and that AH has been cleared. (AL) (AL)+(BL)= =66 16 The result after the AAA instruction is (AL) = (AH) = with both AF and CF remain cleared 微處理機原理與應用 Lecture Arithmetic Instructions Perform a 32-bit binary add operation on the contents of the processor s register. (DX,CX) (DX,CX)+(BX,AX) (DX,CX) = FEDCBA98 16 (BX,AX) = MOV DX, 0FEDCH MOV CX, 0BA98H MOV BX, 01234H MOV AX, 04567H ADD CX, AX ADC DX, BX 微處理機原理與應用 Lecture ; Add with carry 16

17 5.2 Arithmetic Instructions Subtraction Instructions: SUB, SBB, DEC, AAS, DAS, and NEG Mnemonic Meaning Format Operation Flags affected SUB Subtract SUB D, S (D)-(S) (D) Borrow (CF) OF, SF, ZF, AF, PF, CF SBB Subtract with borrow SBB D, S (D)-(S)-(CF) (D) OF, SF, ZF, AF, PF, CF DEC Decrement by 1 DEC D (D)-1 (D) OF, SF, ZF, AF, PF NEG Negate NEG D 0-(D) (D) 1 (CF) OF, SF, ZF, AF, PF,CF DAS Decimal adjust for subtraction DAS SF, ZF, AF, PF, CF, OF undefined AAS ASCII adjust for subtraction AAS AF,CF OF,SF, ZF,PF undefined 微處理機原理與應用 Lecture Arithmetic Instructions Subtraction Instructions: SUB, SBB, DEC, AAS, DAS, and NEG Destination Source Accumulator Immediate Immediate Immediate Destination Reg16 Reg8 Destination Allowed operands for SUB and SBB instructions Allowed operands for DEC instruction Allowed operands for NEG instruction 微處理機原理與應用 Lecture

18 5.2 Arithmetic Instructions Assuming that the contents of register BX and CX are and , respectively, and the carry flag is 0, what is the result of executing the instruction SBB BX, CX? (BX)-(CX)-(CF) (BX) We get (BX) = = the carry flag remains cleared 微處理機原理與應用 Lecture Arithmetic Instructions Verify the previous example using DEBUG program 微處理機原理與應用 Lecture

19 5.2 Arithmetic Instructions Assuming that the register BX contains 003A 16, what is the result of executing the following instruction? NEG BX (BX) = (BX)= complement of 003A 16 = FFC6 16 = FFC6 16 Since no carry is generated in this add operation, the carry flag is complemented to give (CF) = 微處理機原理與應用 Lecture Arithmetic Instructions Verify the previous example using DEBUG program 微處理機原理與應用 Lecture

20 5.2 Arithmetic Instructions Perform a 32-bit binary subtraction for variable X and Y. MOV SI, 200H MOV DI, 100H MOV AX, [SI] SUB AX, [DI] MOV [SI],AX MOV AX, [SI]+2 SBB AX, [DI]+2 MOV [SI]+2, AX ; Initialize pointer for X ; Initialize pointer for Y ; Subtract LS words ; Save the LS word of result ; Subtract MS words ; Save the MS word of result 微處理機原理與應用 Lecture Arithmetic Instructions Multiplication Instructions: MUL, DIV, IMUL, IDIV, AAM, AAD, CBW, and CWD Mnemonic MUL DIV IMUL IDIV Meaning Multiply (unsigned) Division (unsigned) Integer multiply (signed) Integer divide (signed) Format MUL S DIV S IMUL S IDIV S Operation (AL) (S8) (AX) (AX) (S16) (DX)(AX) (1)Q((AX)/(S8)) (AL) R((AX)/(S8)) (AH) (2)Q((DX,AX)/(S16)) (AX) R((DX,AX)/(S16)) (DX) If Q is FF 16 in case (1) or FFFF 16 in case (2), then type 0 interrupt occurs (AL) (S8) (AX) (AX) (S16) (DX)(AX) (1)Q((AX)/(S8)) (AL) R((AX)/(S8)) (AH) (2)Q((DX,AX)/(S16)) (AX) R((DX,AX)/(S16)) (DX) If Q is positive and exceeds 7FFF 16 or if Q is negative and become less than , then type 0 interrupt occurs Flags affected OF, CF SF,ZF, AF, PF undefined OF, SF, ZF, AF, PF, CF undefined OF, CF SF,ZF, AF, PF undefined OF, SF, ZF, AF, PF, CF undefined 微處理機原理與應用 Lecture

21 5.2 Arithmetic Instructions Multiplication Instructions: MUL, DIV, IMUL, IDIV, AAM, AAD, CBW, and CWD Mnemonic AAM AAD CBW CWD Meaning Adjust AL for multiplication Adjust AX for division Convert byte to word Convert word to double word Format Operation AAM Q((AL)/10) (AH) R((AL)/10) (AL) AAD (AH) 10+(AL) (AL) 00 (AH) CBW (MSB of AL) (All bits of AH) CWD (MSB of AX) (All bits of DX) Flags affected SF,ZF,PF OF,AF,CF undefined SF,ZF,PF OF,AF,CF undefined None None Destination Reg8 Reg16 Mem8 Mem16 Allowed operands 微處理機原理與應用 Lecture Arithmetic Instructions The 2 s-complement signed data contents of AL are 1 and that of CL are 2. What result is produced in AX by executing the following instruction? MUL CL and IMUL CL (AL) = -1 (as 2 s complement) = = FF 16 (CL) = -2 (as 2 s complement) = = FE 16 Executing the MUL instruction gives (AX) = x = =FD02 16 Executing the IMUL instruction gives (AX) = x = 2 16 = 微處理機原理與應用 Lecture

22 5.2 Arithmetic Instructions Verify the previous example using DEBUG program 微處理機原理與應用 Lecture Arithmetic Instructions What is the result of executing the following instructions? MOV AL, 0A1H CBW CWD (AL) = A1 16 = Executing the CBW instruction extends the MSB of AL (AH) = = FF 16 or (AX) = Executing the CWD instruction, we get (DX) = = FFFF 16 That is, (AX) = FFA1 16 (DX) = FFFF 微處理機原理與應用 Lecture

23 5.3 Logic Instructions The logic instructions include AND OR XOR (Exclusive-OR) NOT Mnemonic Meaning Format Operation Flags affected AND Logical AND AND D, S (S) (D) (D) OF, SF, ZF, PF, CF AF undefined OR Logical Inclusive-OR OR D, S (S) (D) (D) OF, SF, ZF, PF, CF AF undefined XOR Logical exclusive-or XOR D, S (S) (D) (D) OF, SF, ZF, PF, CF AF undefined NOT Logical NOT NOT D (NOT D) (D) None 微處理機原理與應用 Lecture Logic Instructions Logic instructions : AND, OR, XOR, NOT Destination Accumulator Source Immediate Immediate Immediate Destination Allowed operands for AND, OR, and XOR instructions Allowed operands for NOT instruction 微處理機原理與應用 Lecture

24 5.3 Logic Instructions Describe the results of executing the following instructions? MOV AL, B AND AL, B OR AL, B XOR AL, B NOT AL (AL)= = =15 16 Executing the OR instruction, we get (AL)= = =D5 16 Executing the XOR instruction, we get (AL)= = =DA 16 Executing the NOT instruction, we get (AL)= (NOT) = = 微處理機原理與應用 Lecture Logic Instructions Masking and setting bits in a register. Mask off the upper 12 bits of the word of data in AX AND AX, 000F 16 Setting B 4 of the byte at the offset address CONTROL_FLAGS MOV AL, [CONTROL_FLAGS] OR AL, 10H MOV [CONTROL_FLAGS], AL Executing the above instructions, we get (AL)= = X 微處理機原理與應用 Lecture

25 5.4 Shift Instructions Shift instructions: SHL, SHR, SAL, SAR Mnemonic SAL/SHL SHR SAR Meaning Shift arithmetic left / Shift logical left Shift logical right Shift arithmetic right Format SAL D, Count SHL D, Count SHR D, Count SAR D, Count Operation Shift the (D) left by the number of bit positions equal to Count and fill the vacated bits positions on the right with zeros Shift the (D) right by the number of bit positions equal to Count and fill the vacated bits positions on the left with zeros Shift the (D) right by the number of bit positions equal to Count and fill the vacated bits positions on the left with the original most significant bits Flags affected CF, PF, SF, Z AF undefined OF undefined if count 1 CF, PF, SF, Z AF undefined OF undefined if count 1 CF, PF, SF, Z AF undefined OF undefined if count 微處理機原理與應用 Lecture Shift Instructions Shift instructions: SHL, SHR, SAL, SAR Destination Count 1 CL 1 CL Allowed operands for shift instructions 微處理機原理與應用 Lecture

26 5.4 Shift Instructions Shift instructions: SHL, SHR, SAL, SAR SHL AX, 1 SHR AX, CL SAR AX, CL 微處理機原理與應用 Lecture Shift Instructions Assume that CL contains and AX contains 091A 16. Determine the new contents of AX and the carry flag after the instruction SAR AX, CL is executed. (AX)= = and the carry flag is (CF)= 微處理機原理與應用 Lecture

27 5.4 Shift Instructions Verify the previous example using DEBUG program 微處理機原理與應用 Lecture Shift Instructions Isolate the bit B 3 of the byte at the offset address CONTROL_FLAGS. MOV AL, [CONTROL_FLAGS] MOV CL, 04H SHR AL, CL Executing the instructions, we get (AL)=0000B 7 B 6 B 5 B 4 and (CF)=B 微處理機原理與應用 Lecture

28 5.5 Rotate Instructions Rotate instructions: ROL, ROR, RCL, RCR Mnemonic ROL ROR RCL Meaning Rotate left Rotate right Rotate left through carry Format ROL D, Count ROR D, Count RCL D, Count Operation Rotate the (D) left by the number of bit positions equal to Count. Each bit shifted out from the leftmost bit goes back into the rightmost bit position. Rotate the (D) right by the number of bit positions equal to Count. Each bit shifted out from the rightmost bit goes back into the leftmost bit position. Same as ROL except carry is attached to (D) for rotation. Flags affected CF OF undefined if count 1 CF OF undefined if count 1 CF OF undefined if count 1 RCR Rotate right through carry RCR D, Count Same as ROR except carry is attached to (D) for rotation. CF OF undefined if count 微處理機原理與應用 Lecture Rotate Instructions Rotate instructions: ROL, ROR, RCL, RCR Destination Count 1 CL 1 CL Allowed operands for rotate instructions 微處理機原理與應用 Lecture

29 5.5 Rotate Instructions Rotate instructions: ROL, ROR, RCL, RCR ROL AX, 1 ROR AX, CL (CL)= 微處理機原理與應用 Lecture Rotate Instructions Rotate instructions: ROL, ROR, RCL, RCR For RCL, RCR, the bits are rotate through the carry flag 微處理機原理與應用 Lecture

30 5.5 Rotate Instructions What is the result in BX and CF after execution of the following instructions? RCR BX, CL Assume that, prior to execution of the instruction, (CL)=04 16, (BX)= , and (CF)=0 The original contents of BX are (BX) = = Execution of the RCR command causes a 4-bit rotate right through carry to take place on the data in BX, the results are (BX) = = (CF) = 微處理機原理與應用 Lecture Rotate Instructions Verify the previous example using DEBUG program 微處理機原理與應用 Lecture

31 5.5 Rotate Instructions Disassembly and addition of 2 hexadecimal digits stored as a byte in memory. MOV AL, [HEX_DIGITS] MOV BL, AL MOV CL, 04H ROR BL, CL AND AL, 0FH AND BL, 0FH ADD AL, BL 微處理機原理與應用 Lecture

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

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

,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

幻灯片 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

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

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

<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

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

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

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

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

<4D6963726F736F667420576F7264202D20C7B6C8EBCABDCFB5CDB3C9E8BCC6CAA6B0B8C0FDB5BCD1A75FD1F9D5C22E646F63>

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

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

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

(Microsoft Word - \246D\252k\267\247\255n_\275\306\277\357_.docx)

(Microsoft Word - \246D\252k\267\247\255n_\275\306\277\357_.docx) 二 多 重 選 擇 題 : 1. 下 列 何 種 情 形, 有 我 國 刑 法 之 適 用? (A) 菲 律 賓 人 甲 在 航 行 於 釣 魚 台 海 域 之 我 國 國 籍 的 漁 船 上 打 傷 印 尼 人 乙 (B) 台 灣 人 甲 與 大 陸 人 乙 在 日 本 通 姦 (C) 韓 國 人 甲 在 美 國 殺 死 台 灣 人 乙 (D) 越 南 人 甲 在 越 南 販 賣 海 洛 因 給

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

42 2141601026 2016 11 27 2 1.1............................................. 2 1.2....................................... 2 1.2.1......................................... 2 1.3.............................................

More information

<4D F736F F F696E74202D20BCC6A6ECA874B2CEBEC9BDD7C1BFB871B2C4A440B3B9>

<4D F736F F F696E74202D20BCC6A6ECA874B2CEBEC9BDD7C1BFB871B2C4A440B3B9> 數位系統導論 蔡宗漢 (Tsung-Han Tsai) Dept. of E.E., N.C.U. 1 教學目標 : 1 了解數位電子電路的基本原理, 例如資訊的二進位系統 布林代數 2 了解數位電子電路的基本原件, 如 : 組合電路 循序電路 加法器 比較器 等等 授課大綱 : 1 數位邏輯的原理 2 元件的認識( 如 AND/OR 閘, 加法器 ) 3 數位邏輯功能單元 4 數位邏輯的設計 2

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

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

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 - lecture4--Signal Processing on DSPs.ppt

Microsoft PowerPoint - lecture4--Signal Processing on DSPs.ppt Signal Processing on DSP Platforms Lecture Outline Arithmetic Operations on C54x DSP Signal Processing on DSP Real-time Signal Processing on DSP * Please Refer to TMS320C54x Reference Set, Vol4: Applications

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

$$% % $ (%) % %$ $ ( *+,)(-)-./0-1//0- %) %) % - $%2)33%0 $ % ((3./. 3/3 )3 / % (()33(1 % (()3(/ %89856%:;< % (()3 0()0 3 (. <<=330(<</ 3 3. ()

$$% % $ (%) % %$ $ ( *+,)(-)-./0-1//0- %) %) % - $%2)33%0 $ % ((3./. 3/3 )3 / % (()33(1 % (()3(/ %89856%:;< % (()3 0()0 3 (. <<=330(<</ 3 3. () $$% % $ (%) % %$ $ ( *+,)(-)-./0-1//0- %) %) % - $%2)33%0 $ % ((3./. 3/3 )3 / % (()33(1 % (()3(/0 456777%89856%:;< % (()3 0()0 3 (.

More information

(2) Function 0BH: Function 0CH: (pixel, picture element) Function 0DH: Function 0FH: Function 13H:

(2) Function 0BH: Function 0CH: (pixel, picture element) Function 0DH: Function 0FH: Function 13H: (1) INT 10H Function 00H: Function 01H: Function 02H: Function 03H: Function 05H: Function 06H: Function 07H: Function 08H: Function 09H: Function 0AH: (2) Function 0BH: Function 0CH: (pixel, picture element)

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

1 2 / 3 1 A (2-1) (2-2) A4 6 A4 7 A4 8 A4 9 A ( () 4 A4, A4 7 ) 1 (2-1) (2-2) ()

1 2 / 3 1 A (2-1) (2-2) A4 6 A4 7 A4 8 A4 9 A ( () 4 A4, A4 7 ) 1 (2-1) (2-2) () (39mm E-Mail ( )( ), : : 1 1 ( ) 2 2 ( ) 29mm) WSK ( 1 2 / 3 1 A4 2 1 3 (2-1) 2-1 4 (2-2) 2-2 5 A4 6 A4 7 A4 8 A4 9 A4 10 11 ( () 4 A4, 5 6 7 8 A4 7 ) 1 (2-1) (2-2) () 1 2 (2-1) 3 (2-2) 4 5 6 7 (8 ) 9

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

4 / ( / / 5 / / ( / 6 ( / / 7 1 2 / 3 ( 4 ( 2003 8 ( 2

4 / ( / / 5 / / ( / 6 ( / / 7 1 2 / 3 ( 4 ( 2003 8 ( 2 : / ( 6 (2003 8 : ( 1 ( ( / / (,, ( ( - ( - (39mm 29mm 2 ( 1 2 3-6 3 6-24 6-48 12-24 8-12 WSK / WSK WSK 1 4 / ( / / 5 / / ( / 6 ( / / 7 1 2 / 3 ( 4 ( 2003 8 ( 2 9 5 ( 10 3 11 / (600 4 5 AA 710 AB 720 730

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

Microsoft PowerPoint - os_4.ppt

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

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

bingdian001.com

bingdian001.com 2016 14 1.5 21 1. 50% 20% 5% 10% A.2 B.10.5 C.10 D.2.1 A = 1/ - =50%20%/10%5%=2 2. 2015 1 1.2 1.5 2016 1.9 2015 A.50% B.90% C.75% D.60% A = / = =1.2 1.5=1.8 2016 =1.9-1 /1=0.9 =0.9/1.8=50% 3. A. B. C.

More information

数 学 高 分 的 展 望 一 管 理 类 联 考 分 析 第 一 篇 大 纲 解 析 篇 编 写 : 孙 华 明 1 综 合 能 力 考 试 时 间 :014 年 1 月 4 日 上 午 8:30~11:30 分 值 分 配 : 数 学 :75 分 逻 辑 :60 分 作 文 :65 分 ; 总

数 学 高 分 的 展 望 一 管 理 类 联 考 分 析 第 一 篇 大 纲 解 析 篇 编 写 : 孙 华 明 1 综 合 能 力 考 试 时 间 :014 年 1 月 4 日 上 午 8:30~11:30 分 值 分 配 : 数 学 :75 分 逻 辑 :60 分 作 文 :65 分 ; 总 目 录 数 学 高 分 的 展 望... 1 第 一 篇 大 纲 解 析 篇... 1 一 管 理 类 联 考 分 析... 1 二 最 新 大 纲 解 析... 1 三 考 前 复 习 资 料 及 方 法... 第 二 篇 总 结 篇... 4 1 应 用 题 考 点 总 结 与 技 巧 归 纳... 4 代 数 模 块 题 型 归 纳 及 考 点 总 结... 9 3 数 列 模 块 题 型 归

More information

Microsoft PowerPoint - C15_LECTURE_NOTE_10.ppt

Microsoft PowerPoint - C15_LECTURE_NOTE_10.ppt INPUT/OUTPUT INTERFACE CIRCUITS AND LSI PERIPHERAL DEVICE INPUT/OUTPUT INTERFACE CIRCUITS AND LSI PERIPHERAL DEVICE. Core and Special-Purpose I/O s.2 Byte-Wide Output Ports Using Isolated I/O.3 Byte-Wide

More information

Microsoft PowerPoint - C15_LECTURE_NOTE_15

Microsoft PowerPoint - C15_LECTURE_NOTE_15 THE 8051 MICROCONTROLLER THE 8051 MICROCONTROLLER 15.1 Introduction 15.2 The 8051 Architecture 15.3 Interfacing to External Memory 15.4 The 8051 Instruction Set 15.5 Timer Operations 15.6 Serial Port Operations

More information

組譯與連結(Ver6

組譯與連結(Ver6 Intel 8088/86 CPU GND 1 40 VCC GND 1 40 VCC A14 2 39 A15 AD14 2 39 AD15 A13 3 38 A16/S3 AD13 3 38 A16/S3 A12 4 37 A17/S4 AD12 4 37 A17/S4 A11 5 36 A18/S5 AD11 5 36 A18/S5 A10 A9 6 7 35 34 A19/S6 SS0 (

More information

. v dx v d () () l s dl s d (_) d () v s v s () a dv a d (_) ( ) ( ) x- = v- = = v 0 = m/s a = = m/s 2 a- = ( ) x- v- a- Page 2 of 20

. v dx v d () () l s dl s d (_) d () v s v s () a dv a d (_) ( ) ( ) x- = v- = = v 0 = m/s a = = m/s 2 a- = ( ) x- v- a- Page 2 of 20 Page 1 of 20 . v dx v d () () l s dl s d (_) d () v s v s () a dv a d (_) ( ) ( ) x- = v- = = v 0 = m/s a = = m/s 2 a- = ( ) x- v- a- Page 2 of 20 (1) x v a (2) x v a x v (3) x v a x v a x v Page 3 of

More information

Visualize CMap

Visualize CMap 0001 0020 0002 0021 0003 0022 0004 0023 0005 0024 0006 0025 0007 0026 0008 0027 0009 0028 000A 0029 000B 002A 000C 002B 000D 002C 000E 002D 000F 002E 0010 002F 0011 0030 0012 0031 0013 0032 0014 0033 0015

More information

K301Q-D VRT中英文说明书141009

K301Q-D VRT中英文说明书141009 THE INSTALLING INSTRUCTION FOR CONCEALED TANK Important instuction:.. Please confirm the structure and shape before installing the toilet bowl. Meanwhile measure the exact size H between outfall and infall

More information

Chapter 3

Chapter 3 Chapter 3 Arithmetic for Computers 陳瑞奇 (J.C. Chen) 亞洲大學資訊工程學系 Adapted from class notes by Prof. C.T. King, NTHU, Prof. M.J. Irwin, PSU and Prof. D. Patterson, UCB 3.2 Addition & Subtraction p.67 ( 頁 69)

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

例 009 年高考 全国卷Ⅱ 理 8 如 图 直 三 棱 柱 ABC ABC 中 AB AC D E 分 别为 AA BC 的中点 DE 平面 BCC 证明 AB AC 设二面角 A BD C 为 0o 求 BC 与平面 BCD 所 成角的大小 图 - 略 证明 以 D 为坐标原点 DA DC DD

例 009 年高考 全国卷Ⅱ 理 8 如 图 直 三 棱 柱 ABC ABC 中 AB AC D E 分 别为 AA BC 的中点 DE 平面 BCC 证明 AB AC 设二面角 A BD C 为 0o 求 BC 与平面 BCD 所 成角的大小 图 - 略 证明 以 D 为坐标原点 DA DC DD Education Science 教育科学 平面法向量在解立体几何题中的应用探究 梁毅麟 恩平市华侨中学 广东江门 59400 摘 要 几何发展的根本出路是代数化 引入向量研究是几何代数化的需要 随着平面法向量这个概念在新教 材的引入 应用平面法向量解决立体几何中空间线面位置关系的证明 空间角和距离的求解等高考热点问题的方法 更具灵活性和可操作性 其主要特点是用代数方法解决几何问题 无需考虑如何添加辅助线

More information

Microsoft PowerPoint - chap3.ppt

Microsoft PowerPoint - chap3.ppt 微算機系統第三章 Arithmetic for Computers 陳伯寧教授電信工程學系國立交通大學 chap3-1 Arithmetic Where we've been: Abstractions: Instruction Set Architecture Assembly Language and Machine Language What's up ahead: Implementing

More information

C/C++语言 - C/C++数据

C/C++语言 - C/C++数据 C/C++ C/C++ Table of contents 1. 2. 3. 4. char 5. 1 C = 5 (F 32). 9 F C 2 1 // fal2cel. c: Convert Fah temperature to Cel temperature 2 # include < stdio.h> 3 int main ( void ) 4 { 5 float fah, cel ;

More information

!!""# $ %#" & $$ % $()! *% $!*% +,-. / 0 %%"#" 0 $%1 0 * $! $#)2 "

!!# $ %# & $$ % $()! *% $!*% +,-. / 0 %%# 0 $%1 0 * $! $#)2 ! """"""""""""""""""" " !!""# $ %#" & $$ % $()! *% $!*% +,-. / 0 %%"#" 0 $%1 0 * $! $#)2 " !"#$%#$&!!!!!!!!!!!!!!!!!!!!!!!!!!!"#$%& (& #) *+&,"-./%0 1 2"0*-"3* #4 5%&6&4"&00 78 9+& :"/;& 7< 9+& =#4-%%/

More information

untitled

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

More information

+ 0!"#$ "#% $ % % & $ % % ( 3*&, % &2 $ $ 1 2% +2 $ +# - 4 # $5 # % &", % % $% ( "! "4+ "! " &" " " 5&+ 4"+ 404!8+ 54

+ 0!#$ #% $ % % & $ % % ( 3*&, % &2 $ $ 1 2% +2 $ +# - 4 # $5 # % &, % % $% ( ! 4+ !  &   5&+ 4+ 404!8+ 54 !" # 3456!" -46# $""" # %& ()%& *+,*-./&+ *+)&-0 ()1/2 :;?? A #???? $# $C = A E A = $F @

More information

168 健 等 木醋对几种小浆果扦插繁殖的影响 第1期 the view of the comprehensive rooting quality, spraying wood vinegar can change rooting situation, and the optimal concent

168 健 等 木醋对几种小浆果扦插繁殖的影响 第1期 the view of the comprehensive rooting quality, spraying wood vinegar can change rooting situation, and the optimal concent 第 31 卷 第 1 期 2013 年 3 月 经 济 林 研 究 Nonwood Forest Research Vol. 31 No.1 Mar. 2013 木醋对几种小浆果扦插繁殖的影响 健 1,2 杨国亭 1 刘德江 2 (1. 东北林业大学 生态研究中心 黑龙江 哈尔滨 150040 2. 佳木斯大学 生命科学学院 黑龙江 佳木斯 154007) 摘 要 为了解决小浆果扦插繁殖中生根率及成活率低等问题

More information

Microsoft Word - Final Exam Review Packet.docx

Microsoft Word - Final Exam Review Packet.docx Do you know these words?... 3.1 3.5 Can you do the following?... Ask for and say the date. Use the adverbial of time correctly. Use Use to ask a tag question. Form a yes/no question with the verb / not

More information

1 32 a + b a + b 2 2 a b a b 2 2 2 4a 12a + 9 a 6 2 4 a 12a + 9 a 6 ( 2a 3) 2 a 6 3 1 2 4 + 2 4 8 + 3 6 12 + 1 3 9 + 2 6 18+ 3 9 27 + 1 10 1 10 ax + by = 2 cx 7y = 8 1 2 1 4 1 8 1

More information

/ / (FC 3)...

/ / (FC 3)... Modbus/TCP 1.0 1999 3 29 Andy Swales Schneider aswales@modicon.com ... 2 1.... 3 2.... 3 2.1.. 3 2.2..4 2.3..4 2.4... 5 3.... 5 3.1 0... 5 3.2 1... 5 3.3 2... 6 3.4 / /... 7 4.... 7 5.... 8 5.1 0... 9

More information

PowerPoint Presentation

PowerPoint Presentation ITM omputer and ommunication Technologies Lecture #4 Part I: Introduction to omputer Technologies Logic ircuit Design & Simplification ITM 計算機與通訊技術 2 23 香港中文大學電子工程學系 Logic function implementation Logic

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

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

Microsoft PowerPoint - notes3-Simple-filled12

Microsoft PowerPoint - notes3-Simple-filled12 Generic Computer Organization CSE 30321 Computer Architecture I Lecture Notes 3: A Simple Computer: Simple12 And Design at Register Transfer Level Stored Program Machine (vonneumann Model) Instructions

More information

AVR单片机指令系统.PDF

AVR单片机指令系统.PDF AVR 4 1 (1) 89 :AT90S1200, ; (2) 90 ( ):Attiny11/12/15/22; 90 = +89 (3) 118 ( ):AT90S2313/2323/2343/2333,/4414/4433/4434/8515/90S8534/8535 ;118 = + 90 ; (4) 121 ( )ATmega603/103; 121 = + 118 ; (5) 130

More information

一、注意事项

一、注意事项 2014 年 天 津 市 公 务 员 考 试 行 测 真 题 及 答 案 解 析 第 一 部 分 数 量 关 系 ( 共 15 题 参 考 时 限 15 分 钟 ) 1 6, 11, 17, ( ), 45 A.30 B.28 C.25 D.22 2 2, 3, 6, 15, ( ) A.25 B.36 C.42 D.64 3 1, 2, 9, 64, 625, ( ) A.1728 B.3456

More information

T stg -40 to 125 C V cc 3.8V V dc RH 0 to 100 %RH T a -40 to +125 C -0.3 to 3.6V V -0.3 to VDD+0.3 V -10 to +10 ma = 25 = 3V) VDD

T stg -40 to 125 C V cc 3.8V V dc RH 0 to 100 %RH T a -40 to +125 C -0.3 to 3.6V V -0.3 to VDD+0.3 V -10 to +10 ma = 25 = 3V) VDD 1/16 T stg -40 to 125 C V cc 3.8V V dc RH 0 to 100 %RH T a -40 to +125 C -0.3 to 3.6V V -0.3 to VDD+0.3 V -10 to +10 ma (@T = 25 C, @Vdd = 3V) VDD 1.8 3.0 3.6 V (1) 0.08 0.3 µa Idd 300 450 500 µa 0.25

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

.

. 如 果 您 想 節 省 30% 的 報 關 費 支 出 這 將 是 一 份 非 常 值 得 您 細 讀 的 簡 介! 本 團 隊 由 全 國 國 貿 會 考 第 一 名 報 關 專 業 技 師 領 導, 提 供 您 最 專 業 的 報 關 知 識 + 比 業 界 收 費 更 便 宜 30% 的 報 關 服 務 服 務 專 員 -- 劉 榮 富 專 程 拜 訪 24h 服 務 專 線 : 0932-644732

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

E170C2.PDF

E170C2.PDF IQ E170C2 2002.3. Rotork Rotork * ( ) * * RotorkIQ - IQ * * PC IQ Insight / Rotork * - Rotork IQ www.rotork.com 5 10 5.1 11 1 2 5.2 11 2 3 5.3 11 3 IQ 3 5.4 11 3.1 3 5.5 IQM12 3.2 3 5.6 IQML12 3.3 4 5.7

More information

untitled

untitled MODBUS 1 MODBUS...1 1...4 1.1...4 1.2...4 1.3...4 1.4... 2...5 2.1...5 2.2...5 3...6 3.1 OPENSERIAL...6 3.2 CLOSESERIAL...8 3.3 RDMULTIBIT...8 3.4 RDMULTIWORD...9 3.5 WRTONEBIT...11 3.6 WRTONEWORD...12

More information

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

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

More information

第五章 重叠、流水和现代处理器技术

第五章 重叠、流水和现代处理器技术 2006 5 l t 1 t 2 t 3 t 4 I: add r1,r2,r3 J: sub r4,r1,r5 : (Hazard) : (Hazard) Instr 1 Instr 2 ( ) Cycle 1 Cycle 2 Cycle 3 Cycle 4 Cycle 5 Cycle 6 Cycle 7 Load Ifetch ALU DMem Instr 1 Ifetch ALU DMem

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

2006年国家公务员招录考试行测真题(A)

2006年国家公务员招录考试行测真题(A) 2006 年 中 央 国 家 机 关 公 务 员 录 用 考 试 行 政 职 业 能 力 测 验 (A) 真 题 说 明 这 项 测 验 共 有 五 个 部 分,135 道 题, 总 时 限 为 120 分 钟 各 部 分 不 分 别 计 时, 但 都 给 出 了 参 考 时 限, 供 你 参 考 以 分 配 时 间 请 在 机 读 答 题 卡 上 严 格 按 照 要 求 填 写 好 自 己 的 姓

More information

<4D6963726F736F667420576F7264202D20C1E3B5E3CFC2D4D8C4A3B0E52E646F63>

<4D6963726F736F667420576F7264202D20C1E3B5E3CFC2D4D8C4A3B0E52E646F63> 历 年 MBA MPAcc 联 考 数 学 真 题 及 答 案 详 解 (009-0) 009 年 月 MBA 联 考 数 学 真 题 及 答 案 详 解 一 问 题 求 解 ( 本 大 题 共 小 题, 每 小 题 分, 共 分 下 列 每 题 给 出 的 五 个 选 项 中, 只 有 一 项 是 符 合 试 题 要 求 的 请 在 答 题 卡... 上 将 所 有 选 项 的 字 母 涂 黑 ).

More information

"!! ! " # $! $&% ! " # $ %! " # $ & () #$*!!* %(* %$* # + !""!!##!"$$ %!""# &# & "$ ( & )*+ % ),+!""! )!"") -! -., ( &!""*!!! /0,#&# "*!""- % &#!# *$# !"!" ## $""" % & (()*) )*+ (, -".""" % &,(/0#1.""

More information

微處理機期末專題

微處理機期末專題 微 處 理 機 期 末 專 題 自 動 鋼 琴 組 員 :b92611004 羅 鈞 瑋 b92611008 吳 妍 儂 b92611038 吳 韋 靜 b92611042 林 佳 穎 一 簡 介 本 組 的 主 題 是 自 動 鋼 琴 在 播 放 音 樂 的 同 時, 鋼 琴 會 自 動 按 下 琴 鍵, 被 按 下 的 琴 鍵 所 對 應 到 的 音 階, 就 是 正 在 撥 放 的 樂 曲 的

More information

(Microsoft Word - Motion Program \270\305\264\272\276\363 \307\245\301\366 \271\327 \270\361\302\367.doc)

(Microsoft Word - Motion Program \270\305\264\272\276\363 \307\245\301\366 \271\327 \270\361\302\367.doc) : TBFAT-G5MP-MN004-11 1 GX Series PLC Program Manual 2 GX Series PLC Program Manual Contents Contents...3 1... 1-1 1.1... 1-2 1.2... 1-3 1.2.1... 1-3 1.2.2... 1-4 1.2.3... 1-4 1.2.4... 1-6 1.3... 1-7 1.3.1...

More information

逢 甲 大 學

逢 甲 大 學 Ultrasound radar system - i - - ii - The ultrasound radar system is on the basis of the Doppler Effect. In the incessant acoustic wave actuator, emitting to object. Some acoustic wave which impacted the

More information

Program Guide(中文).PDF

Program Guide(中文).PDF RP-U420 LF FF CR RS ESC! ESC % ESC & ESC * ESC < ESC = ESC? ESC @ REC R ESC c 0 ESC c 3 ESC c 4 ESC c 5 ESC d n ESC f ESC o ESC p ESC t ESC z FS & FS. GS I GS V GS r DLE EOT DLE ENQ ID DLE DC4 ASCIIASCII

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

6 C51 ANSI C Turbo C C51 Turbo C C51 C51 C51 C51 C51 C51 C51 C51 C C C51 C51 ANSI C MCS-51 C51 ANSI C C C51 bit Byte bit sbit

6 C51 ANSI C Turbo C C51 Turbo C C51 C51 C51 C51 C51 C51 C51 C51 C C C51 C51 ANSI C MCS-51 C51 ANSI C C C51 bit Byte bit sbit 6 C51 ANSI C Turbo C C51 Turbo C C51 C51 C51 C51 C51 C51 C51 C51 C51 6.1 C51 6.1.1 C51 C51 ANSI C MCS-51 C51 ANSI C C51 6.1 6.1 C51 bit Byte bit sbit 1 0 1 unsigned char 8 1 0 255 Signed char 8 11 128

More information

1 VLBI VLBI 2 32 MHz 2 Gbps X J VLBI [3] CDAS IVS [4,5] CDAS MHz, 16 MHz, 8 MHz, 4 MHz, 2 MHz [6] CDAS VLBI CDAS 2 CDAS CDAS 5 2

1 VLBI VLBI 2 32 MHz 2 Gbps X J VLBI [3] CDAS IVS [4,5] CDAS MHz, 16 MHz, 8 MHz, 4 MHz, 2 MHz [6] CDAS VLBI CDAS 2 CDAS CDAS 5 2 32 1 Vol. 32, No. 1 2014 2 PROGRESS IN ASTRONOMY Feb., 2014 doi: 10.3969/j.issn.1000-8349.2014.01.07 VLBI 1,2 1,2 (1. 200030 2. 200030) VLBI (Digital Baseband Convertor DBBC) CDAS (Chinese VLBI Data Acquisition

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

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

科学计算的语言-FORTRAN95

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

More information

GSA Media Retention Web File xlsx

GSA Media Retention Web File xlsx GSA Media Retention Web file 06 28 18 Offering Type Model GSA price w/iff HD RETN-SYS X F 0793 ALL 3.79 HD RETN-IBM S F 1269 1F1 34.10 HD RETN-IBM S F 1269 1S1 34.10 HD RETN-IBM S F 1269 2S1 34.10 HD RETN-IBM

More information

iml88-0v C / 8W T Tube EVM - pplication Notes. IC Description The iml88 is a Three Terminal Current Controller (TTCC) for regulating the current flowi

iml88-0v C / 8W T Tube EVM - pplication Notes. IC Description The iml88 is a Three Terminal Current Controller (TTCC) for regulating the current flowi iml88-0v C / 8W T Tube EVM - pplication Notes iml88 0V C 8W T Tube EVM pplication Notes Table of Content. IC Description.... Features.... Package and Pin Diagrams.... pplication Circuit.... PCB Layout

More information

<4D6963726F736F667420576F7264202D2032303036C4EAB9FABCD2B9ABCEF1D4B1D0D0D5FEC4DCC1A6B2E2D1E9A3A841C0E0A3A92E646F63>

<4D6963726F736F667420576F7264202D2032303036C4EAB9FABCD2B9ABCEF1D4B1D0D0D5FEC4DCC1A6B2E2D1E9A3A841C0E0A3A92E646F63> 2006 年 中 央 国 家 公 务 员 考 试 行 政 职 业 能 力 测 验 一 第 一 部 分 言 语 理 解 与 表 达 1. 在 公 路 发 展 的 早 期, 它 们 的 走 势 还 能 顺 从 地 貌, 即 沿 河 流 或 森 林 的 边 缘 发 展 可 如 今, 公 路 已 无 所 不 在, 狼. 熊 等 原 本 可 以 自 由 游 荡 的 动 物 种 群 被 分 割 得 七 零 八

More information

untitled

untitled 不 料 料 例 : ( 料 ) 串 度 8 年 數 串 度 4 串 度 數 數 9- ( ) 利 數 struct { ; ; 數 struct 數 ; 9-2 數 利 數 C struct 數 ; C++ 數 ; struct 省略 9-3 例 ( 料 例 ) struct people{ char name[]; int age; char address[4]; char phone[]; int

More information

Ps22Pdf

Ps22Pdf ) ,,, :,,,,,,, ( CIP) /. :, 2001. 9 ISBN 7-5624-2368-7.......... TU311 CIP ( 2001) 061075 ( ) : : : : * : : 174 ( A ) : 400030 : ( 023) 65102378 65105781 : ( 023) 65103686 65105565 : http: / / www. cqup.

More information

Ps22Pdf

Ps22Pdf ( ) ( 150 ) 25 15 20 40 ( 25, 1, 25 ), 1. A. B. C. D. 2. A. B. C. D. 3., J = 1 H = 1 ( A B, J', J, H ) A. A = B = 1, J' =0 B. A = B = J' =1 C. A = J' =1, B =0 D. B = J' = 1, A = 0 4. AB + AB A. AB B. AB

More information

51 C 51 isp 10 C PCB C C C C KEIL

51 C 51 isp 10   C   PCB C C C C KEIL http://wwwispdowncom 51 C " + + " 51 AT89S51 In-System-Programming ISP 10 io 244 CPLD ATMEL PIC CPLD/FPGA ARM9 ISP http://wwwispdowncom/showoneproductasp?productid=15 51 C C C C C ispdown http://wwwispdowncom

More information

3.1 num = 3 ch = 'C' 2

3.1 num = 3 ch = 'C' 2 Java 1 3.1 num = 3 ch = 'C' 2 final 3.1 final : final final double PI=3.1415926; 3 3.2 4 int 3.2 (long int) (int) (short int) (byte) short sum; // sum 5 3.2 Java int long num=32967359818l; C:\java\app3_2.java:6:

More information

Microsoft Word - 最新正文.doc

Microsoft Word - 最新正文.doc 9 21 1.1.1 1.1.2 1 2 2 Windows 7+Office 2010 3 4 5 6 4 7 1.1.3 5 1.1.4 1 3 2 NII 1993 3 CNNIC 2014 1 16 33 1 2013 12 6.18 5358 45.8% 2012 3.7 2 2013 12 5 19.1% 2012 74.5% 81.0% 2013 3G 2013 12 2.47 2012

More information

1 Project New Project 1 2 Windows 1 3 N C test Windows uv2 KEIL uvision2 1 2 New Project Ateml AT89C AT89C51 3 KEIL Demo C C File

1 Project New Project 1 2 Windows 1 3 N C test Windows uv2 KEIL uvision2 1 2 New Project Ateml AT89C AT89C51 3 KEIL Demo C C File 51 C 51 51 C C C C C C * 2003-3-30 pnzwzw@163.com C C C C KEIL uvision2 MCS51 PLM C VC++ 51 KEIL51 KEIL51 KEIL51 KEIL 2K DEMO C KEIL KEIL51 P 1 1 1 1-1 - 1 Project New Project 1 2 Windows 1 3 N C test

More information

星河33期.FIT)

星河33期.FIT) 大 事 记 渊 2011.11 要 要 2011.12 冤 1 尧 11 月 25 日 下 午 袁 白 银 区 首 届 中 小 学 校 长 论 坛 在 我 校 举 行 遥 2 尧 在 甘 肃 省 2011 年 野 十 一 五 冶 规 划 课 题 集 中 鉴 定 中 袁 我 校 教 师 郝 香 梅 负 责 的 课 题 叶 英 语 课 堂 的 艺 术 性 研 究 曳 袁 张 宏 林 负 责 的 叶 白

More information

Eaton kVA 用户指南

Eaton kVA 用户指南 UPS 815kVA 230V 50/60 Hz UPS 815kVA 230V 50/60 Hz UPS 8 15 KVA230V50-60 Hz 1022403 B1 UPS 8 15 KVA230V50-60 Hz 1022403 B1 8 10kVAUPS230V 50/60 Hz 8 15kVAUPS230V 50/60 Hz CE SPM UPS 8 15 KVA230V50-60 Hz

More information

TCP/IP TCP/IP OSI IP TCP IP IP TCP/IP TCP/IP

TCP/IP TCP/IP OSI IP TCP IP IP TCP/IP TCP/IP TCP/IP : TCP/IP TCP/IP OSI IP TCP IP IP TCP/IP TCP/IP 1. ASCII EBCDIC Extended Binary-Coded Decimal Interchange Code 2. / (1) (2) Single System Image SSI) (3) I/O (4) 3.OSI OSI Open System Interconnection

More information

2

2 1 2 3 4 PHY (RAN1) LTE/LTE-A 6.3 Enhanced Downlink Multiple Antenna Transmission 6.3.1 CSI RS 6.4 Uplink Multiple Antenna Transmission 6.4.1 Transmission modes and Signalling requirements for SU-MIMO 6.5

More information

untitled

untitled SIMATIC S7-300 4/2 4/2 S7-300/S7-300F 4/4 4/4 CPU 312C - CPU 317F-2 DP 4/38 SIPLUS 4/38 SIPLUS CPU 312C, CPU 313C, CPU 314, CPU 315-2 DP 4/40 4/40 SM 321 4/46 SM 322 4/52 SM 323/SM 327 I/O 4/56 SIPLUS

More information

untitled

untitled CPU!! 00-11-8 Liping zhang, Tsinghua 1 : ADD(r1, r, r) CMPLEC(r, 5, r0) MUL(r1, r, r) SUB(r1, r, r5) ADD r, ( ) r CMP. CMP r.. t t + 1 t + t + t + t + 5 t + 6 IF( ) ADD CMP MUL SUB RF NOP ADD CMP MUL SUB

More information