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

Determine the rotor speed, A four-pole, three-phase inductionmotor is energ...

A four-pole, three-phase inductionmotor is energized from a 60-Hz supply. It is running at a load condition for which the slip is 0.03. Determine: (a) The rotor speed in r/min.

What is meant by biasing transistor, Q. What is meant by biasing transistor...

Q. What is meant by biasing transistor? The purpose of dc biasing of transistor is to obtain a certain dc collector current at a certain dc collector voltage. These values of c

Compute the motor speed, Consider the 220-V, 1800-r/min dc motor, controlle...

Consider the 220-V, 1800-r/min dc motor, controlled by a three-phase fully controlled rectifier from a 60-Hz ac source. The armature-circuit resistance and inductance are 1.5  and

How many bits are required, This problem concerns entropy There are hund...

This problem concerns entropy There are hundred students in a midterm exam. There are 5 grades and the number of students having each grade is shown below. At a min

Draw a 100 line exchange, Q. Draw a 100 line exchange using two motion sele...

Q. Draw a 100 line exchange using two motion selectors and elucidate, how switching takes place in it. Ans: In a 100 line exchange, every subscriber is assigned a 2 digit

PIC Controller Programming, I want to do programming in PIC controller and ...

I want to do programming in PIC controller and it needs to be done on particular development board.

Input offset current of operational amplifier, Q. Input offset current of o...

Q. Input offset current of operational amplifier? The adverse effect of the input bias current mentioned would be nulli?ed if both inputs were connected to equal resistances (o

Modern Control Theory, I have all my report about Vehicle suspension system...

I have all my report about Vehicle suspension systems . But I need the simulation and hardware test for this project. I need you to do it and give me the observation.

Digital control system, block diagram of digital control system and explain...

block diagram of digital control system and explain each block

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