Microsoft PowerPoint - notes3-Simple-filled12

Size: px
Start display at page:

Download "Microsoft PowerPoint - notes3-Simple-filled12"

Transcription

1 Generic Computer Organization CSE Computer Architecture I Lecture Notes 3: A Simple Computer: Simple12 And Design at Register Transfer Level Stored Program Machine (vonneumann Model) Instructions are represented as numbers Programs in memory are read or written just as normal data Memory Register Data Path Program Memory Control Logic (Interprets the ISA) X. Sharon Hu Department of Computer Science and Engineering Clock Program Counter The notes are developed based on the effort of all those who have taught CSE321 before. X.S. Hu 3-1 X.S. Hu 3-2 Typical Instruction Execution Memory Organization I-Fetch DECODE EA Fetch the next Instruction Decide what is to be done Compute the address of any operands HARVARD ARCHITECTURE PRINCETON ARCHITECTURE D-FETCH EXECUTE Fetch the data Perform computation Instruction Memory CPU Data Memory CPU Instruction and Data Memory WRITEBACK Store the results ENDOP Clean up (increment PC) X.S. Hu 3-3 X.S. Hu 3-4 1

2 Simple12: A Minimal Computer Simple12 Instruction Format Start Control Datapath PC A Address(8) DataIn(12) DataOut(12) RAM PC (Program Counter): holds the 8-bit address of the current instruction A (Accumulator): holds 12 bits of data Opcode (4) Address (8) Opcode: Operation Code Specifies the action to be taken by the machine Address: The operand s address Read (1) Write (1) X.S. Hu 3-5 X.S. Hu 3-6 Simple12 ISA OPCODE Mnemonic RTL (What does the instruction do) 0000 JMP X PC <- X 0001 JN X if A<0 then PC <-X else PC++ 00 JZ X if A=0 then PC <-X else PC reserved 00 LOAD X A <- M(X), PC++ 01 STORE X M(X) <- A, PC++ 01 reserved 0111 reserved 00 AND X A <- A and M(X), PC++ 01 OR X A <- A or M(X), PC++ ADD X A <- A + M(X), PC++ 11 SUB X A <- A - M(X), PC++ 10 reserved 11 reserved 11 reserved 1111 reserved A Simple12 Assembly Program Problem: Given three memory locations (X, Y, and Z), use the Simple12 to find the maximum of (X, Y) and place it in Z PROGRAM 0 LOAD X 1 SUB Y 2 JN B1 3 LOAD X 4 JMP SAVE 5 B1: LOAD Y 6 SAVE: STORE Z X.S. Hu 3-7 X.S. Hu 3-8 2

3 Program Execution (1) Program Execution (2) PROGRAM VALUE IN A PROGRAM VALUE IN A 0 LOAD X 1 SUB Y 5 2 JN B1 5 (not taken) 3 LOAD X 4 JMP SAVE (taken) 5 B1: LOAD Y 6 SAVE: STORE Z X: Y: 5 Z: n/a 0 LOAD X 1 SUB Y - 5 = 5 2 JN B1 3 LOAD X 4 JMP SAVE 5 B1: LOAD Y 6 SAVE: STORE Z X: Y: 5 Z: n/a X.S. Hu 3-9 X.S. Hu 3- Program Execution (3) Program Execution (4) PROGRAM VALUE IN A PROGRAM VALUE IN A 0 LOAD X 1 SUB Y 2 JN B1 5 3 LOAD X 4 JMP SAVE 5 B1: LOAD Y 6 SAVE: STORE Z X: Y: 5 Z: n/a 0 LOAD X 1 SUB Y 2 JN B1 3 LOAD X 4 JMP SAVE 5 B1: LOAD Y 6 SAVE: STORE Z X: Y: 5 Z: n/a X.S. Hu 3-11 X.S. Hu

4 Program Execution (6) PROGRAM 0 LOAD X 1 SUB Y 2 JN B1 3 LOAD X 4 JMP SAVE 5 B1: LOAD Y 6 SAVE: STORE Z X: Y: 5 Z: VALUE IN A X.S. Hu 3-13 Another Example Simple12 Program ; A program to see if each : item in array contains a ; particular element ; while (A[i]!= 0) ; if ( A[i] & Mask!=0) ; A[i] = 1; ; else ; A[i] = 0; ; i++; ; Data declarations!.data A0 3.DATA A1 5.DATA A2 3.DATA A3 8.DATA A4 19.DATA A5 0.DATA Zero 0.DATA One 1.DATA Mask 1 L1: LOAD A0 JZ Done AND Mask JZ B1 LOAD One JMP L2 B1: LOAD Zero L2: STORE A0 Done: LOAD ADD STORE LOAD ADD STORE JMP.END L1 One L1 L2 One L2 L1 X.S. Hu 3-14 Registers Register Transfer Operations CLK D Latch CLK Q Clocked Latch: State changes when Q the clock is asserted and the inputs change. D CLK D Register Before Clock Combinatorial Logic After Clock Register CLK Flip-Flop Q Flip-Flop: state changes only on the rising clock edge. D Q Register: an array of flip-flops Register Combinatorial Logic Register X.S. Hu 3-15 X.S. Hu

5 Register Transfer Language Register Transfer Language (RTL): describes the internal operation of the system in terms of a sequence of register reads, combinatorial logic, and register writes. Defines operations in terms of data flow and associated control mechanisms Can be relatively high level Forms the basis of most hardware description languages Example Register Transfer Operations A XOR C C <= A xor B B 1 A + A <= A + 1 X.S. Hu 3-17 X.S. Hu 3-18 RTL Assignments Functions and Operators Register transfer operations are expressed as: D <= S D (destination) gets S (source) c d S + CLK D load c CLK Z load s0 and x if (c) then D <= S if (s0 and x) then Z <= c+d C D S P Y <= A B n n... MUX n Y A when s=0 else B when s=1 else... n Bit-vectors used as both operands and results Examples: Decode(X) Add(X,Y) F(Q) Similar to switch/case construct in C X.S. Hu 3-19 X.S. Hu

6 Parallel Assignments LOAD A B A <= B, B<= A Question: if A=11 and B=00 initially, what are their values after one clock cycle? Sequencing Constructs Each line of code is executed after the line before: step1: A <= X; step2: B <= Y; step3: C <= A+B; Operations may occur in parallel: step1: A <= X, B<=Y; step2: C <= A+B; Goto Statement Acceptable: step1: A <= X, B <= Y; step2: C <= A + B, if A[0] = 1 goto step1; X.S. Hu 3-21 X.S. Hu 3-22 RTL Notation Summarized Sequencing SYMBOL DESCRIPTION EXAMPLE Names/Letters Registers A, B, foo <= Transfer into ( gets ) A <= B : (colon) indicates a control state s0: <statement>, (comma) parallel microoperations A<=B,C<=D +, - Arithmetic Operations A<=B+1 &,, overline logic operators (bitwise) A<=A&B <<,>> shift operators A<=B<<1 if, then, else conditional if (c=0) then F<= 1 else F<= 0 goto branch goto s0 S0 S1 S2 S3 Microinst Microinst Microinst N>=0 Microinst N<0 Algorithm execution is controlled by sequencing states Each state has an associated microinstruction Several parallel microoperations may occur in each state implemented as register transfers Conditional branching More excercise X.S. Hu 3-23 X.S. Hu

7 Microcoding AKA: Microprogramming Instructions are expressed as a series of microinstructions that express each time-step of the operation. microinstructions are composed of micro-operations Only one microinstruction executes at a time Each microinstruction executes its set of microoperations in parallel Microinstructions Microoperations } Microprogram Simple12 ISA OPCODE Mnemonic RTL 0000 JMP X PC <- X 0001 JN X if A<0 then PC <-X else PC++ 00 JZ X if A=0 then PC <-X else PC reserved 00 LOAD X A <- M(X), PC++ 01 STORE X M(X) <- A, PC++ 01 reserved 0111 reserved 00 AND X A <- A and M(X), PC++ 01 OR X A <- A or M(X), PC++ ADD X A <- A + M(X), PC++ 11 SUB X A <- A - M(X), PC++ 10 reserved 11 reserved 11 reserved 1111 reserved X.S. Hu 3-25 X.S. Hu 3-26 Simple12 Simple12: External Interfaces PC (Program Counter): holds the 8-bit address of the current instruction A (Accumulator): holds 12 bits of data VISIBLE REGISTERS PC (Program Counter): holds the 8-bit address of the current instruction A (Accumulator): holds 12 bits of data INVISIBLE REGISTERS MAR (Mem. Access Reg): places the address for a memory access onto the address bus. MDR (Mem. Data Reg.): transfers data to/from memory X.S. Hu 3-27 X.S. Hu

8 Memory Read/Write Typical Instruction Execution MAR holds the address, MDR holds the value The control signals memory read (mem_read) and memory write (mem_write) must be set appropriately MEMORY READ: MAR <= address, mem_read <= 1 MEMORY WRITE: MAR <= address, MDR <= value, mem_write <= 1 I-Fetch DECODE EA D-FETCH EXECUTE WRITEBACK ENDOP Fetch the next Instruction Decide what is to be done Compute the address of any operands Fetch the data Perform computation Store the results Clean up (increment PC) X.S. Hu 3-29 X.S. Hu 3-30 Simple12 Instruction Execution ALU Operations PC <= 0 Start=1 Fetch 12-bit Instruction Start=0 op X, take the form: A <= A op Mem[X] Fetch 12-bit Instruction 2 cycles IFetch MAR <= PC { mem_read <= 1 7 Cycles Decode Instruction Compute Operand s Address Microinstructions Decode Instruction Compute Operand s Address Decode Examine MDR(11:8) MAR <= MDR(7:0) Fetch 12-bit Operand Compute New Value Save Results Compute New PC NOTE: Not all instructions require that all microinstructions be executed. Fetch 12-bit Operand Compute New Value Save Results Compute New PC } mem_read <= 1 A <= A op MDR PC <= PC + 1 X.S. Hu 3-31 X.S. Hu

9 LOAD/STORE Operations LOAD X: A <= Mem[X] STORE X Mem[X] <= A MAR <= PC mem_read <= 1 Examine MDR(11:8) Jump Operations JMP X JN X JZ X Unconditional if A[11]=1 if A=0 MAR <= PC mem_read <= 1 MAR <= MDR mem_read <= 1 A <= MDR LOAD STORE MAR <= MDR MDR <= A mem_write <= 1 Examine MDR(11:8) Branch Failed Branch Successful PC <= PC + 1 PC <= MDR(7:0) PC <= PC + 1 PC <= PC + 1 How many cycles? How many cycles for each instruction? X.S. Hu 3-33 X.S. Hu 3-34 Required Datapath Operations Example Program Execution ALU Instructions AND, OR, ADD, SUB PC Increment LOAD/STORE Instructions Register Transfers Only PC Increment JUMP Instructions Check A[11] and A=0 n_flag z_flag Only Register Transfers EXAMPLE: Choose the max of two numbers. 00h: LOAD X (30h) 01h: SUB Y (31h) 02h: JN B1 (06h) 03h: LOAD X (30h) 04h: JMP SAVE (07h) 06h: B1: LOAD Y (31h) 07h: SAVE: STORE Z (32h)... 30h: X: 7 31h: Y: 32h: Z: n/a CYCLE* PC A MAR MDR MEM OP 1 00h h h Read M[0] 3 00h h h - 30h 430h h - 30h 007h Read M[30h] 6 00h 007h 30h 007h h 007h 30h 007h h 007h 01h 007h h 007h 01h B31h Read M[01h] 01h 007h 01h B31h h 007h 31h B31h h 007h 31h 00Ah Read M[31h] 13 01h FFDh 31h 00Ah h FFDh 31h 00Ah - * End of each cycle X.S. Hu 3-35 X.S. Hu

10 Potential Improvements Cannot use opcode in the subsequent cycle as it is in MDR Solution: Add an Instruction Register (IR) Loaded from the memory bits 11-8 at the same time as MDR A cycle is wasted in each instruction moving PC to MAR Solution: update PC and MAR simultaneously The only writes to memory come from A Solution: tie A to DataOut and save a cycle for MDR <= A Most instructions require PC <= PC+1 Solution: use more hardware Many microinstructions are the same (or very similar) regardless of opcode Solution: group common states together Revised Microprogram RTL Stopped: IFetch: EAGen: OpAccess: Execute: If start=1 then (MAR <= 0, PC<=0, goto IFetch) else goto Stopped read_mem <= 1, MDR <= DataIn, MAR<=PC+1, PC<=PC+1, IR<=DataIn(11:8), goto EAGen if (IR=JMP) or (IR=JN and A(11)=1) or (IR=JZ and A=0) then MAR <= MDR(7:0), PC<=MDR(7:0) goto IFetch else if (IR=JN) or (IR=JZ) then goto IFetch else MAR <= MDR(7:0), goto OpAccess MAR <= PC, if IR=LOAD or IR(3:2)= /* i.e., an ALU operation */ then (Read <= 1, MDR<=DataIn, goto Execute) else (Write <= 1, DataOut <= A, goto IFetch) /* a STORE */ if (IR=LOAD) then A <= MDR, goto IFetch else if (IR=AND) then A <= A and MDR, goto IFetch else if (IR=OR) then A <= A or MDR, goto IFetch else if (IR=ADD) then A <= A + MDR, goto IFetch else if (IR=SUB) then A <= A - MDR, goto IFetch NOTE: if Read and Write are not explicitly specified, they are 0 X.S. Hu 3-37 X.S. Hu 3-38 Revised State Machine A First-Cut Datapath Stopped Start IFetch EAGen OpAccess Execute ~Start Jumps Store INSTRUCTION CYCLES JMP 2 JN 2 JZ 2 LOAD 4 STORE 3 AND 4 OR 4 ADD 4 SUB 4 Required Microoperations: PC <= 0 MDR <= DataIn, IR <= DataIn, PC<= PC +1 MAR <= MDR(7:0), PC<=MDR(7:0) MAR <= PC A <= MDR A <= A + MDR A <= A - MDR A <= A and MDR A <= A or MDR R(11) Negative Zero B A M U X PC AND 0 0/1 MAR IR MDR A Address DataIn DataOut X.S. Hu 3-39 X.S. Hu 3-40

11 Control Signals Cin Binv Zero Resulting Control Points: Load Signals for each register ALU Controls (4 bits) b-invert, carry-in, op1, op0 MUX1: select PC, MDR, or 0 AND: Select 0 or A bmux LoadPC R(11) Negative B A M U X PC AND 0 agate MAR IR MDR (0/1) A FuncSel (Op0 and Op1) Address DataIn DataOut LoadMAR LoadIR LoadMDR LoadA ALU Control Definitions Binv Cin op1 op0 ACTION A and B A and ~B A or B A or ~B A + B A + B A -B A -B + 1 ALU also has a zero flag. X.S. Hu 3-41 X.S. Hu 3-42 Moore and Mealy Machines Moore and Mealy Machines Microinstructions will be issued to the data path using a state machine Two possibilities: Moore Machine: the outputs of the state machine depend only on the current state Mealy Machine: the outputs of the state machine depend on the current state and the values of the inputs Moore Machine Inputs Curr ent State Next State Function (comb. logic) Mealy Machine Inputs Curr ent State Next State Function (comb. logic) Output Function (combinational logic) Output Output Function (combinational logic) Output X.S. Hu 3-43 X.S. Hu

12 Mealy Design Problem Two Solutions EAGen if (IR=JMP) or (IR=JN and A(11)=1 or (IR=JZ and A=0) then MAR <= PC <= MDR(7:0) First: EAGen (IR=JN and A(11)=1) or (IR=JZ and A=0) BTaken MAR <=PC<=MDR(7:0) IR=JN or IR=JZ IFetch IR=JN or IR=JZ (not taken) IFetch ALU needed twice in the same cycle! Second: Add More Hardware (check the Z-flag outside the ALU) X.S. Hu 3-45 X.S. Hu 3-46 Revised Timing Simple12 Control Signal Table INSTRUCTION CYCLES JMP 2 JN not taken 2 taken 3 JZ not taken 2 taken 3 LOAD 4 STORE 3 AND 4 OR 4 ADD 4 SUB 4 Q Stopped IFetch EAGen Opnd Execute BTaken JMP JN JZ LD/ST ALUOP STORE IR n/a LOAD AND ADD SUB a r t S Neg n/a 01 Zero n/a Q* Opnd EAGen IFetch BTaken Execute Stopped A 0 L 1 C P 1 L 0 R A M 1 L 0 R D M 0 L 1 R I 01 L U L + AND OR ADD SUB n/a X U MDR b PC 0 e t a G 0 1 d a e 0 R 1 et ir 0 W X.S. Hu 3-47 X.S. Hu

13 Control Path Implementation Microprogrammed Control Unit Hardwired Microprogrammed A control unit with its binary control values stored as words in memory (ie, a ROM) Big Questions: How do we structure the microprogram? How do we sequence through microinstructions? What are the fields? Address (Control Inputs) Memory (ROM) Data (Control Outputs) X.S. Hu 3-49 X.S. Hu 3-50 Microprogram Structure Microinstruction Template Common States (IFetch, etc) Additional Long Sequences Up to 2 Micro- Instructions per OpCode Shared States Stopped, IFetch 16 Possible OpCodes OperandAccess and Execute sequences somewhat different for each Minimum 2 non-shared Microinstructions to be allocated Additional space available in table for growth Cond Sel 3 Addr Sel 1 Addr Next 6 A Load 1 PC Load 1 MAR Load 1 MDR Load 1 ALU 4 MUX b 2 Gate a 1 Rd 1 Wt 1 b-inv Cin OR ADD AND X.S. Hu 3-51 X.S. Hu

14 Condition Select Sample Microinstruction Branch Addr (6) Addr Select (1) MUX Q,IR Control Store ROM 1 => Loads Q with new address 0 => Increments Q to next address LD/EN M U X False True ~A(11) ~ALU=0 ~Start Condition Select: chooses how LD/EN is driven Cond Sel 0 Addr Sel 0 Addr Next A Load 0 PC Load 1 MAR Load 1 MDR Load 0 ALU 00 MUX b 0 Gate a 0 Rd 0 Wt0 Addr. Select: if Q LD/EN=1 (load Q) 0 => select next address bits from ROM 1 => construct address from control and IR bits Control Signals to Data Flow b-inv Cin OR ADD AND X.S. Hu 3-53 X.S. Hu 3-54 Sample Microinstruction (continued) EAGen for JN BTaken Cond Sel 001 Addr Sel 1 Next Addr Load A 0 Load PC 1 Load MAR 1 Load MDR 1 ALU 01 MUX b 11 a Gate 0 Rd 1 Wt0 Cond Sel Addr Sel Addr Next A Load PC Load MAR Load MDR Load ALU MUX b Gate a Rd Wt b-inv Cin AND OR ADD b-inv Cin OR ADD AND X.S. Hu 3-55 X.S. Hu

15 BTaken for JN EAGen for ADD BTaken 1 MAR PC MDR(7:0), goto IFetch ADD at 10 MAR MDR[7:0], goto OpAcc Cond Sel Addr Sel Next Addr Load A Load PC Load MAR Load MDR ALU MUX b a Gate Rd Wt Cond Sel Addr Sel Addr Next A Load PC Load MAR Load MDR Load ALU MUX b Gate a Rd Wt b-inv Cin AND OR ADD b-inv Cin OR ADD AND X.S. Hu 3-57 X.S. Hu 3-58 OpAcc for ADD Execute for ADD OpAcc for ADD at 11 MDR[7:0] DataIn, goto Execute Execute for ADD at 01 A MDR[7:0] + A, goto IFetch Cond Sel Addr Sel Next Addr Load A Load PC Load MAR Load MDR ALU MUX b a Gate Rd Wt Cond Sel Addr Sel Addr Next A Load PC Load MAR Load MDR Load ALU MUX b Gate a Rd Wt b-inv Cin AND OR ADD Any mistake? Yes, need MAR <- PC LoadMAR = 1, ALU = 00, bmux = 11, agate = 0 X.S. Hu 3-59 b-inv Cin OR ADD AND X.S. Hu

16 EAGen for LOAD OpAcc for LOAD LOAD at 00 MAR MDR[7:0], goto OpAcc OpAcc for LOAD at 01 MDR[7:0] DataIn, MAR PC, goto Execute Cond Sel Addr Sel Next Addr Load A Load PC Load MAR Load MDR ALU MUX b a Gate Rd Wt Cond Sel Addr Sel Next Addr Load A Load PC Load MAR Load MDR ALU MUX b a Gate Rd Wt b-inv Cin AND OR ADD b-inv Cin OR ADD AND X.S. Hu 3-61 X.S. Hu 3-62 Execute for LOAD Execute for LOAD at 00 A MDR[7:0], goto IFetch Cond Sel Addr Sel Next Addr Load A Load PC Load MAR Load MDR ALU MUX b a Gate Rd Wt b-inv Cin AND OR ADD X.S. Hu

Microsoft PowerPoint - CA_03 Chapter5 Part-II_multi _V1.ppt

Microsoft PowerPoint - CA_03 Chapter5 Part-II_multi _V1.ppt Chapter5-2 The Processor: Datapath and Control (Multi-cycle implementation) 臺大電機系 吳安宇教授 V1. 03/27/2007 For 2007 DSD Course 臺大電機吳安宇教授 - 計算機結構 1 Outline 5.1 Introduction 5.2 Logic Design Conventions 5.3

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

Computer Architecture

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

More information

1 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

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

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

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

第五章 重叠、流水和现代处理器技术 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

9 什 么 是 竞 争 与 冒 险 现 象? 怎 样 判 断? 如 何 消 除?( 汉 王 笔 试 ) 在 组 合 逻 辑 中, 由 于 门 的 输 入 信 号 通 路 中 经 过 了 不 同 的 延 时, 导 致 到 达 该 门 的 时 间 不 一 致 叫 竞 争 产 生 毛 刺 叫 冒 险 如

9 什 么 是 竞 争 与 冒 险 现 象? 怎 样 判 断? 如 何 消 除?( 汉 王 笔 试 ) 在 组 合 逻 辑 中, 由 于 门 的 输 入 信 号 通 路 中 经 过 了 不 同 的 延 时, 导 致 到 达 该 门 的 时 间 不 一 致 叫 竞 争 产 生 毛 刺 叫 冒 险 如 FPGA 工 程 师 面 试 试 题 一 1 同 步 电 路 和 异 步 电 路 的 区 别 是 什 么?( 仕 兰 微 电 子 ) 2 什 么 是 同 步 逻 辑 和 异 步 逻 辑?( 汉 王 笔 试 ) 同 步 逻 辑 是 时 钟 之 间 有 固 定 的 因 果 关 系 异 步 逻 辑 是 各 时 钟 之 间 没 有 固 定 的 因 果 关 系 3 什 么 是 " 线 与 " 逻 辑, 要 实

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

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

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

邏輯分析儀的概念與原理-展示版

邏輯分析儀的概念與原理-展示版 PC Base Standalone LA-100 Q&A - - - - - - - SCOPE - - LA - - ( Embedded ) ( Skew ) - Data In External CLK Internal CLK Display Buffer ASIC CPU Memory Trigger Level - - Clock BUS Timing State - ( Timing

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

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

More information

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

穨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

ENGG1410-F Tutorial 6

ENGG1410-F Tutorial 6 Jianwen Zhao Department of Computer Science and Engineering The Chinese University of Hong Kong 1/16 Problem 1. Matrix Diagonalization Diagonalize the following matrix: A = [ ] 1 2 4 3 2/16 Solution The

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

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

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

untitled

untitled USING THE DESIGN ASSISTANT PanDeng 2004 05 Quartus help/search Design Assistant TMG6480 Design Assistant warning 1. Combinational logic used as clock signal should be implemented according to Altera standard

More information

(baking powder) 1 ( ) ( ) 1 10g g (two level design, D-optimal) 32 1/2 fraction Two Level Fractional Factorial Design D-Optimal D

(baking powder) 1 ( ) ( ) 1 10g g (two level design, D-optimal) 32 1/2 fraction Two Level Fractional Factorial Design D-Optimal D ( ) 4 1 1 1 145 1 110 1 (baking powder) 1 ( ) ( ) 1 10g 1 1 2.5g 1 1 1 1 60 10 (two level design, D-optimal) 32 1/2 fraction Two Level Fractional Factorial Design D-Optimal Design 1. 60 120 2. 3. 40 10

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

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

投影片 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

中国科学技术大学学位论文模板示例文档

中国科学技术大学学位论文模板示例文档 University of Science and Technology of China A dissertation for doctor s degree An Example of USTC Thesis Template for Bachelor, Master and Doctor Author: Zeping Li Speciality: Mathematics and Applied

More information

Microsoft PowerPoint - CA_04 Chapter6 v ppt

Microsoft PowerPoint - CA_04 Chapter6 v ppt Chap. 6 Enhancing Performance with Pipelining 臺大電機系吳安宇教授 V1. 2007/04/20 臺大電機吳安宇教授 - 計算機結構 1 Outline 6.1 An Overview of Pipelining 6.2 A Pipelined Datapath 6.3 Pipelined Control 6.4 Data Hazards and Forwarding

More information

2015年4月11日雅思阅读预测机经(新东方版)

2015年4月11日雅思阅读预测机经(新东方版) 剑 桥 雅 思 10 第 一 时 间 解 析 阅 读 部 分 1 剑 桥 雅 思 10 整 体 内 容 统 计 2 剑 桥 雅 思 10 话 题 类 型 从 以 上 统 计 可 以 看 出, 雅 思 阅 读 的 考 试 话 题 一 直 广 泛 多 样 而 题 型 则 稳 中 有 变 以 剑 桥 10 的 test 4 为 例 出 现 的 三 篇 文 章 分 别 是 自 然 类, 心 理 研 究 类,

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

Microsoft Word doc

Microsoft Word doc 中 考 英 语 科 考 试 标 准 及 试 卷 结 构 技 术 指 标 构 想 1 王 后 雄 童 祥 林 ( 华 中 师 范 大 学 考 试 研 究 院, 武 汉,430079, 湖 北 ) 提 要 : 本 文 从 结 构 模 式 内 容 要 素 能 力 要 素 题 型 要 素 难 度 要 素 分 数 要 素 时 限 要 素 等 方 面 细 致 分 析 了 中 考 英 语 科 试 卷 结 构 的

More information

12 Differential Low-Power 6x6 12 bit multiply 1

12 Differential Low-Power 6x6 12 bit multiply 1 12 Differential Low-Power 6x6 12 bit multiply 1 2 07 1.1 07 1.2 07 1.2.1 (Sequential Structure Multiplier )07 1.2.2 (Array Structure Multiplier) 09 1.2.3 (Parallel Multiplier) 10 1.2.3.1 10 1.2.3.2 10

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

92 (When) (Where) (What) (Productivity) (Efficiency) () (2) (3) (4) (5) (6) (7) em-plant( SiMPLE++) Scheduling When Where Productivity Efficiency [5]

92 (When) (Where) (What) (Productivity) (Efficiency) () (2) (3) (4) (5) (6) (7) em-plant( SiMPLE++) Scheduling When Where Productivity Efficiency [5] DYNAMIC SCHEDULING IN TWO-MACHINE FLOW-SHOP WITH RECIRCULATION em-plant( SiMPLE++) Jen-Shiang Chen, Jar-Her Kao, Chun-Chieh Chen, Po-Cheng Liu, and Wen-Pin Lin Department of Industrial Engineering and

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

A dissertation for Master s degree Metro Indoor Coverage Systems Analysis And Design Author s Name: Sheng Hailiang speciality: Supervisor:Prof.Li Hui,

A dissertation for Master s degree Metro Indoor Coverage Systems Analysis And Design Author s Name: Sheng Hailiang speciality: Supervisor:Prof.Li Hui, 中 国 科 学 技 术 大 学 工 程 硕 士 学 位 论 文 地 铁 内 移 动 通 信 室 内 覆 盖 分 析 及 应 用 作 者 姓 名 : 学 科 专 业 : 盛 海 亮 电 子 与 通 信 导 师 姓 名 : 李 辉 副 教 授 赵 红 媛 高 工 完 成 时 间 : 二 八 年 三 月 十 日 University of Science and Technology of Ch A dissertation

More information

Microsoft Word - 18-p0402-c3.doc

Microsoft Word - 18-p0402-c3.doc 第 14 卷 第 3 期 中 南 大 学 学 报 ( 社 会 科 学 版 ) Vol.14 No3 2008 年 6 月 J. CENT. SOUTH UNIV. (SOCIAL SCIENCE) Jun 2008 肺 病 隐 喻 与 性 别 身 份 建 构 中 国 现 代 文 学 中 的 肺 病 意 象 分 析 王 冬 梅 ( 枣 庄 学 院 中 文 系, 山 东 枣 庄,277160) 摘 要

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 Word - 103-4 記錄附件

Microsoft Word - 103-4 記錄附件 國 立 虎 尾 技 大 103 年 度 第 4 次 教 務 會 議 記 錄 附 件 中 華 民 國 104 年 6 月 16 日 受 文 者 : 國 立 虎 尾 技 大 發 文 日 期 : 中 華 民 國 104 年 5 月 28 日 發 文 字 號 : 臺 教 技 ( 二 ) 字 第 1040058590 號 速 別 : 最 速 件 密 等 及 解 密 條 件 或 保 密 期 限 : 附 件 :

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

2017 CCAFL Chinese in Context

2017 CCAFL Chinese in Context Student/Registration Number Centre Number 2017 PUBLIC EXAMINATION Chinese in Context Reading Time: 10 minutes Working Time: 2 hours and 30 minutes You have 10 minutes to read all the papers and to familiarise

More information

软件测试(TA07)第一学期考试

软件测试(TA07)第一学期考试 一 判 断 题 ( 每 题 1 分, 正 确 的, 错 误 的,20 道 ) 1. 软 件 测 试 按 照 测 试 过 程 分 类 为 黑 盒 白 盒 测 试 ( ) 2. 在 设 计 测 试 用 例 时, 应 包 括 合 理 的 输 入 条 件 和 不 合 理 的 输 入 条 件 ( ) 3. 集 成 测 试 计 划 在 需 求 分 析 阶 段 末 提 交 ( ) 4. 单 元 测 试 属 于 动

More information

東莞工商總會劉百樂中學

東莞工商總會劉百樂中學 /2015/ 頁 (2015 年 版 ) 目 錄 : 中 文 1 English Language 2-3 數 學 4-5 通 識 教 育 6 物 理 7 化 學 8 生 物 9 組 合 科 學 ( 化 學 ) 10 組 合 科 學 ( 生 物 ) 11 企 業 會 計 及 財 務 概 論 12 中 國 歷 史 13 歷 史 14 地 理 15 經 濟 16 資 訊 及 通 訊 科 技 17 視 覺

More information

HC50246_2009

HC50246_2009 Page: 1 of 7 Date: June 2, 2009 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

入學考試網上報名指南

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

6-7 6-8 6-9 Process Data flow Data store External entity 6-10 Context diagram Level 0 diagram Level 1 diagram Level 2 diagram 6-11 6-12

6-7 6-8 6-9 Process Data flow Data store External entity 6-10 Context diagram Level 0 diagram Level 1 diagram Level 2 diagram 6-11 6-12 6-1 6-2 6-3 6-4 6-5 6-6 6-7 6-8 6-9 Process Data flow Data store External entity 6-10 Context diagram Level 0 diagram Level 1 diagram Level 2 diagram 6-11 6-12 6-13 6-14 6-15 6-16 6-17 6-18 6-19 6-20 6-21

More information

PowerPoint Presentation

PowerPoint Presentation Decision analysis 量化決策分析方法專論 2011/5/26 1 Problem formulation- states of nature In the decision analysis, decision alternatives are referred to as chance events. The possible outcomes for a chance event

More information

HC20131_2010

HC20131_2010 Page: 1 of 8 Date: April 14, 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

BC04 Module_antenna__ doc

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

More information

Value Chain ~ (E-Business RD / Pre-Sales / Consultant) APS, Advanc

Value Chain ~ (E-Business RD / Pre-Sales / Consultant) APS, Advanc Key @ Value Chain fanchihmin@yahoo.com.tw 1 Key@ValueChain 1994.6 1996.6 2000.6 2000.10 ~ 2004.10 (E- RD / Pre-Sales / Consultant) APS, Advanced Planning & Scheduling CDP, Collaborative Demand Planning

More information

* RRB *

* RRB * *9000000000RRB0010040* *9000000000RRB0020040* *9000000000RRB0030040* *9000000000RRB0040040* *9000000000RRC0010050* *9000000000RRC0020050* *9000000000RRC0030050* *9000000000RRC0040050* *9000000000RRC0050050*

More information

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

More information

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

OSI OSI 15% 20% OSI OSI ISO International Standard Organization 1984 OSI Open-data System Interface Reference Model OSI OSI OSI OSI ISO Prototype Prot

OSI OSI 15% 20% OSI OSI ISO International Standard Organization 1984 OSI Open-data System Interface Reference Model OSI OSI OSI OSI ISO Prototype Prot OSI OSI OSI 15% 20% OSI OSI ISO International Standard Organization 1984 OSI Open-data System Interface Reference Model OSI OSI OSI OSI ISO Prototype Protocol OSI OSI OSI OSI OSI O S I 2-1 Application

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

(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

高中英文科教師甄試心得

高中英文科教師甄試心得 高 中 英 文 科 教 師 甄 試 心 得 英 語 學 系 碩 士 班 林 俊 呈 高 雄 市 立 高 雄 高 級 中 學 今 年 第 一 次 參 加 教 師 甄 試, 能 夠 在 尚 未 服 兵 役 前 便 考 上 高 雄 市 立 高 雄 高 級 中 學 專 任 教 師, 自 己 覺 得 很 意 外, 也 很 幸 運 考 上 後 不 久 在 與 雄 中 校 長 的 會 談 中, 校 長 的 一 句

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

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

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

<4D6963726F736F667420576F7264202D2032303130C4EAC0EDB9A4C0E04142BCB6D4C4B6C1C5D0B6CFC0FDCCE2BEABD1A15F325F2E646F63>

<4D6963726F736F667420576F7264202D2032303130C4EAC0EDB9A4C0E04142BCB6D4C4B6C1C5D0B6CFC0FDCCE2BEABD1A15F325F2E646F63> 2010 年 理 工 类 AB 级 阅 读 判 断 例 题 精 选 (2) Computer mouse How does the mouse work? We have to start at the bottom, so think upside down for now. It all starts with mouse ball. As the mouse ball in the bottom

More information

untitled

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

More information

AL-MX200 Series

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

More information

Microsoft PowerPoint - ch6 [相容模式]

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

More information

4. 每 组 学 生 将 写 有 习 语 和 含 义 的 两 组 卡 片 分 别 洗 牌, 将 顺 序 打 乱, 然 后 将 两 组 卡 片 反 面 朝 上 置 于 课 桌 上 5. 学 生 依 次 从 两 组 卡 片 中 各 抽 取 一 张, 展 示 给 小 组 成 员, 并 大 声 朗 读 卡

4. 每 组 学 生 将 写 有 习 语 和 含 义 的 两 组 卡 片 分 别 洗 牌, 将 顺 序 打 乱, 然 后 将 两 组 卡 片 反 面 朝 上 置 于 课 桌 上 5. 学 生 依 次 从 两 组 卡 片 中 各 抽 取 一 张, 展 示 给 小 组 成 员, 并 大 声 朗 读 卡 Tips of the Week 课 堂 上 的 英 语 习 语 教 学 ( 二 ) 2015-04-19 吴 倩 MarriottCHEI 大 家 好! 欢 迎 来 到 Tips of the Week! 这 周 我 想 和 老 师 们 分 享 另 外 两 个 课 堂 上 可 以 开 展 的 英 语 习 语 教 学 活 动 其 中 一 个 活 动 是 一 个 充 满 趣 味 的 游 戏, 另 外

More information

Microsoft PowerPoint - Aqua-Sim.pptx

Microsoft PowerPoint - Aqua-Sim.pptx Peng Xie, Zhong Zhou, Zheng Peng, Hai Yan, Tiansi Hu, Jun-Hong Cui, Zhijie Shi, Yunsi Fei, Shengli Zhou Underwater Sensor Network Lab 1 Outline Motivations System Overview Aqua-Sim Components Experimental

More information

第1章 簡介

第1章 簡介 EAN.UCCThe Global Language of Business 4 512345 678906 > 0 12345 67890 5 < > 1 89 31234 56789 4 ( 01) 04601234567893 EAN/UCC-14: 15412150000151 EAN/UCC-13: 5412150000161 EAN/UCC-14: 25412150000158 EAN/UCC-13:

More information

Microsoft PowerPoint - STU_EC_Ch07.ppt

Microsoft PowerPoint - STU_EC_Ch07.ppt 樹德科技大學資訊工程系 Chapter 7: Flip-Flops and Related Devices Shi-Huang Chen Fall 2010 1 Outline Latches Edge-Triggered Flip-Flops Master-Slave Flip-Flops Flip-Flop Operating Characteristics Flip-Flop Applications

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

A Study on the Relationships of the Co-construction Contract A Study on the Relationships of the Co-Construction Contract ( ) ABSTRACT Co-constructio in the real estate development, holds the quite

More information

单周期数据通路

单周期数据通路 计算机组织与系统结构 设计单周期数据通路的处理器 Designing a Single Cycle Datapath Microprocessor 第四讲 程旭 27..2 2 Processor Processor Control Enable? Read/Write Memory Datapath PC Registers Arithmetic & Logic Unit (ALU) Address

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

Stochastic Processes (XI) Hanjun Zhang School of Mathematics and Computational Science, Xiangtan University 508 YiFu Lou talk 06/

Stochastic Processes (XI) Hanjun Zhang School of Mathematics and Computational Science, Xiangtan University 508 YiFu Lou talk 06/ Stochastic Processes (XI) Hanjun Zhang School of Mathematics and Computational Science, Xiangtan University hjzhang001@gmail.com 508 YiFu Lou talk 06/04/2010 - Page 1 Outline 508 YiFu Lou talk 06/04/2010

More information

LH_Series_Rev2014.pdf

LH_Series_Rev2014.pdf REMINDERS Product information in this catalog is as of October 2013. All of the contents specified herein are subject to change without notice due to technical improvements, etc. Therefore, please check

More information

CH01.indd

CH01.indd 3D ios Android Windows 10 App Apple icloud Google Wi-Fi 4G 1 ( 3D ) 2 3 4 5 CPU / / 2 6 App UNIX OS X Windows Linux (ios Android Windows 8/8.1/10 BlackBerry OS) 7 ( ZigBee UWB) (IEEE 802.11/a/b/g/n/ad/ac

More information

2009 Japanese First Language Written examination

2009 Japanese First Language Written examination Victorian Certificate of Education 2009 SUPERVISOR TO ATTACH PROCESSING LABEL HERE STUDENT NUMBER Letter Figures Words JAPANESE FIRST LANGUAGE Written examination Monday 16 November 2009 Reading time:

More information

2005 5,,,,,,,,,,,,,,,,, , , 2174, 7014 %, % 4, 1961, ,30, 30,, 4,1976,627,,,,, 3 (1993,12 ),, 2

2005 5,,,,,,,,,,,,,,,,, , , 2174, 7014 %, % 4, 1961, ,30, 30,, 4,1976,627,,,,, 3 (1993,12 ),, 2 3,,,,,, 1872,,,, 3 2004 ( 04BZS030),, 1 2005 5,,,,,,,,,,,,,,,,, 1928 716,1935 6 2682 1928 2 1935 6 1966, 2174, 7014 %, 94137 % 4, 1961, 59 1929,30, 30,, 4,1976,627,,,,, 3 (1993,12 ),, 2 , :,,,, :,,,,,,

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

2010 Japanese First Language Written examination

2010 Japanese First Language Written examination Victorian Certificate of Education 2010 SUPERVISOR TO ATTACH PROCESSING LABEL HERE STUDENT NUMBER Letter Figures Words JAPANESE FIRST LANGUAGE Written examination Monday 15 November 2010 Reading time:

More information

<4D6963726F736F667420506F776572506F696E74202D20C8EDBCFEBCDCB9B9CAA6D1D0D0DEBDB2D7F92E707074>

<4D6963726F736F667420506F776572506F696E74202D20C8EDBCFEBCDCB9B9CAA6D1D0D0DEBDB2D7F92E707074> 软 件 架 构 师 研 修 讲 座 胡 协 刚 软 件 架 构 师 UML/RUP 专 家 szjinco@public.szptt.net.cn 中 国 软 件 架 构 师 网 东 软 培 训 中 心 小 故 事 : 七 人 分 粥 当 前 软 件 团 队 的 开 发 现 状 和 面 临 的 问 题 软 件 项 目 的 特 点 解 决 之 道 : 从 瀑 布 模 型 到 迭 代 模 型 解 决 项

More information

untitled

untitled 51Testing Diana LI Xbox Xbox Live Fidelity Investments Office Server group Xbox Expedia Inc ( elong ) 1996 1996. bug break - 5Ws bug. Trust No One) QA Function Assignment Checking Timing Build/Package/Merge

More information

ap15_chinese_interpersoanal_writing_ _response

ap15_chinese_interpersoanal_writing_ _response 2015 SCORING GUIDELINES Interpersonal Writing: 6 EXCELLENT excellence in 5 VERY GOOD Suggests excellence in 4 GOOD 3 ADEQUATE Suggests 2 WEAK Suggests lack of 1 VERY WEAK lack of 0 UNACCEPTABLE Contains

More information

Chn 116 Neh.d.01.nis

Chn 116 Neh.d.01.nis 31 尼 希 米 书 尼 希 米 的 祷 告 以 下 是 哈 迦 利 亚 的 儿 子 尼 希 米 所 1 说 的 话 亚 达 薛 西 王 朝 二 十 年 基 斯 流 月 *, 我 住 在 京 城 书 珊 城 里 2 我 的 兄 弟 哈 拿 尼 和 其 他 一 些 人 从 犹 大 来 到 书 珊 城 我 向 他 们 打 听 那 些 劫 后 幸 存 的 犹 太 人 家 族 和 耶 路 撒 冷 的 情 形

More information

2009 Korean First Language Written examination

2009 Korean First Language Written examination Victorian Certificate of Education 2009 SUPERVISOR TO ATTACH PROCESSING LABEL HERE STUDENT NUMBER Letter Figures Words KOREAN FIRST LANGUAGE Written examination Tuesday 20 October 2009 Reading time: 2.00

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

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

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

More information

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

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

More information

Lorem ipsum dolor sit amet, consectetuer adipiscing elit

Lorem ipsum dolor sit amet, consectetuer adipiscing elit English for Study in Australia 留 学 澳 洲 英 语 讲 座 Lesson 3: Make yourself at home 第 三 课 : 宾 至 如 归 L1 Male: 各 位 朋 友 好, 欢 迎 您 收 听 留 学 澳 洲 英 语 讲 座 节 目, 我 是 澳 大 利 亚 澳 洲 广 播 电 台 的 节 目 主 持 人 陈 昊 L1 Female: 各 位

More information

热设计网

热设计网 例 例 Agenda Popular Simulation software in PC industry * CFD software -- Flotherm * Advantage of Flotherm Flotherm apply to Cooler design * How to build up the model * Optimal parameter in cooler design

More information

<4D6963726F736F667420576F7264202D2035B171AB73B6CBA8ECAB73A6D3A4A3B6CBA158B3AFA46CA9F9BB50B169A445C4D6AABAB750B94AB8D6B9EFA4F1ACE3A873>

<4D6963726F736F667420576F7264202D2035B171AB73B6CBA8ECAB73A6D3A4A3B6CBA158B3AFA46CA9F9BB50B169A445C4D6AABAB750B94AB8D6B9EFA4F1ACE3A873> 中 正 漢 學 研 究 2012 年 第 一 期 ( 總 第 十 九 期 ) 2012 年 6 月 頁 111~134 國 立 中 正 大 學 中 國 文 學 系 111 從 哀 傷 到 哀 而 不 傷 : 陳 子 昂 與 張 九 齡 的 感 遇 詩 對 比 研 究 * 丁 涵 摘 要 在 中 國 古 典 文 學 語 境 中, 一 個 主 題 的 奠 立 往 往 需 要 歷 時 彌 久, 而 這 本

More information

OA-253_H1~H4_OL.ai

OA-253_H1~H4_OL.ai WARNINGS Note: Read ALL the following BEFORE using this product. Follow all Guidelines at all times while using this product. CAUTION This warning indicates possibility of personal injury and material

More information

A Preliminary Implementation of Linux Kernel Virus and Process Hiding

A Preliminary Implementation of Linux Kernel Virus and Process Hiding 邵 俊 儒 翁 健 吉 妍 年 月 日 学 号 学 号 学 号 摘 要 结 合 课 堂 知 识 我 们 设 计 了 一 个 内 核 病 毒 该 病 毒 同 时 具 有 木 马 的 自 动 性 的 隐 蔽 性 和 蠕 虫 的 感 染 能 力 该 病 毒 获 得 权 限 后 会 自 动 将 自 身 加 入 内 核 模 块 中 劫 持 的 系 统 调 用 并 通 过 简 单 的 方 法 实 现 自 身 的

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

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

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

Microsoft Word - A200811-773.doc

Microsoft Word - A200811-773.doc 语 言 模 型 在 高 校 保 研 工 作 中 的 应 用 王 洋 辽 宁 工 程 技 术 大 学 理 学 院 信 息 与 计 算 科 学, 辽 宁 阜 新 (3000) E-mail: ben.dan000 @63.com 摘 要 : 问 题 重 述 : 模 糊 性 数 学 发 展 的 主 流 是 在 它 的 应 用 方 面, 其 中 模 糊 语 言 模 型 实 现 了 人 类 语 言 的 数 学

More information

從詩歌的鑒賞談生命價值的建構

從詩歌的鑒賞談生命價值的建構 Viktor E. Frankl (logotherapy) (will-to-meaning) (creative values) Ture (Good) (Beauty) (experiential values) (attitudinal values) 1 2 (logotherapy) (biological) (2) (psychological) (3) (noölogical) (4)

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