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

Simple harmonic motion, what is the application of simple harmonic motion i...

what is the application of simple harmonic motion in electrical engineering?

Find magnitude and direction developed torque, Q. The self and mutual induc...

Q. The self and mutual inductances of a machine with two windings are given by L 11 = (1 +sin θ), L 22 = 2(1 + sin θ), and L 12 = L 21 = M = (1-sin θ). Assuming θ = 45°, and le

History of computers , History of Computers To understand the  inventi...

History of Computers To understand the  invention of microprocessor we have  to see the  history  of computer  first. The growth  the computers  is divided in  different  gener

Determine required output power, Q. Two stations (using identical antennas,...

Q. Two stations (using identical antennas, with diameters of 50λ and aperture ef?ciencies of 0.6 at 35 GHz) are separated by 30 km. With negligible antenna losses, antenna connecti

Explain cold rolled grain oriented steel, Discuss the properties and uses o...

Discuss the properties and uses of Cold rolled grain oriented steel. Cold rolled grain oriented steel:  Grain orientation of silicon steel is acquired by a special technique

Fraction of the total cross section - interaction processes, Determine and ...

Determine and plot for 5 keV to 100 MeV the fraction of the total cross section due to each of the four interaction processes for      (a) hydrogen,      (b) nitrogen,

Basic architecture of digital switching systems, Q. Explain the basic archi...

Q. Explain the basic architecture of digital switching systems. Explain in detail companding. Ans: A simple N X N time division space switch is displayed in Figure. Switch

Weighted resistor and the r-2 r ladder d/a converters, Q. What is the basic...

Q. What is the basic difference between the weighted resistor and the R-2 R ladder D/A converters?

Serial input output ports , Serial Input output Ports For serial  inpu...

Serial Input output Ports For serial  input  and output  there are  two pins  in 8085 microprocessor

Thyristor - power semiconductor devices , Thyristor The name thyristor...

Thyristor The name thyristor  is derived bya  combination of the  capital  letters from  thyratron and  translstor. This means that thyristor is a solid  state device like  a

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