Examine the features of a typical pc motherboard, Electrical Engineering

Assignment Help:

Q. Examine the features of a typical PC motherboard?

The purpose of this experiment is to examine the features of a typical PC motherboard, including:

  • CPU and co-processor
  • Memory
  • I/O
  • BIOS
  • Interrupts

Procedure

 Choose two chapters in the PDF for closer study. For each: 1) Do the "Questions/Activities" section and 2) Answer the questions in the Self Test section

Submit your findings.

Download copy of Program TONE.ASM: Generate a 1 KHz tone on the PC speaker for 5 seconds.

        .MODEL SMALL

        .DATA

;Note: You will have to adjust these values to get the 5 seconds.

;The current values give just over 1 second on a 1.3 GHz machine.

OUTER   DW    4000            ;outer loop count

INNER   DW    50000           ;inner loop count

        .CODE

        .STARTUP

        CALL  SPKRON          ;turn speaker on

        MOV   CX,1190         ;divisor for 1 KHz tone

        CALL  LDTIMER         ;set speaker frequency

        CALL  DELAY           ;wait for chosen duration

        CALL  SPKROFF         ;turn speaker off

        .EXIT

SPKRON  PROC  NEAR

        IN    AL,61H          ;read current state of port 61h

        OR    AL,3            ;set speaker control bits

        OUT   61H,AL          ;output new state

        RET

SPKRON  ENDP

SPKROFF PROC  NEAR

        IN    AL,61H          ;read current state of port 61h

        AND   AL,0FCH         ;clear speaker control bits

        OUT   61H,AL          ;output new state

        RET

SPKROFF ENDP

DELAY   PROC  NEAR

        MOV   DX,OUTER

WAIT1:  MOV   CX,INNER

WAIT2:  NOP

        NOP

        NOP

        NOP

        LOOP  WAIT2

        DEC   DX              

        JNZ   WAIT1          

        RET

DELAY   ENDP

;Note: Output frequency equals 1,190,000 divided by CX

LDTIMER PROC  NEAR

        MOV   AL,0B6H         ;timer 2 control word

        OUT   43H,AL

        MOV   AL,CL           ;output lower byte of count

        OUT   42H,AL

        MOV   AL,CH           ;output upper byte of count

        OUT   42H,AL

        RET

LDTIMER ENDP

        END


Related Discussions:- Examine the features of a typical pc motherboard

Power diode - power semiconductor devices , Power Diode A power diode i...

Power Diode A power diode is a two terminal, anode a and cathode K and  two layer P  and  N  junction devices. A PN  junction normally  formed  by allowing  diffusion and epita

In the circuit, see figure on this link: http://tinypic.com/r/1zodevk/8. ...

see figure on this link: http://tinypic.com/r/1zodevk/8. A. j400 I1-j1200 I2 (A) B. -j400 I1+j1600 I2 (A) C. j400 I1+j400 I2 (A) D. -j400 I1-j400 I2 (A)

Find the parameter values for channel mosfet, Q. Find the parameter values ...

Q. Find the parameter values V T and I DSS for a p- channel MOSFET with i D = 0 when v GS ≤-3 V, and i D = 5 mA when v GS = v DS =-8V.You may neglect the effect of v DS on

Motor control , Normal 0 false false false EN-IN X-NO...

Normal 0 false false false EN-IN X-NONE X-NONE MOTOR CONTROL

Transfer characteristics of p-channel enhancement mosfet, Q. Explain the dr...

Q. Explain the drain and transfer characteristics of P-channel enhancement MOSFET. In p-channel enhancement MOSFET here is a n-type substrate and p doped regions under drain an

Armature winding, what is use of dummy coil in DC m/c????

what is use of dummy coil in DC m/c????

Determine the full load voltage regulation, A 25KVA, 3 phase, wye-connected...

A 25KVA, 3 phase, wye-connected, 400v synchronous generator has a synchronous impedance of 0.05 +j1.6 ohms per phase. Determine the full load voltage regulation at (a) 0.8 power

Advantages of a.c generator - the alternator, 1) only one pair of slip ring...

1) only one pair of slip rings are required (to energise the rotating field coil) regardless of the number of phases produced by the alternator (three phases is common because of t

Find voltage in circuit using the ideal op-amp technique, Q. Find v o in t...

Q. Find v o in the circuit shown in Figure by using the ideal op-amp technique.

Write Your Message!

Captcha
Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd