MSI 3200 Network manual Set Bit 0 and 1 to High, Set Bit 0 and 1 to Low, Set Bit 2 and 3 to High

Models: 3200 Network

1 60
Download 60 pages 15.57 Kb
Page 29
Image 29

 

 

 

 

Hardware Setup

Sample code to access IO Port 5Eh

 

 

 

 

 

 

 

 

IO Port 5Eh

High

Low

 

 

Bit 0/1

POWER ON Lan3-4/Lan1-2 Bypass

POWER ON Lan3-4/Lan1-2 Pass Through

 

 

Bit 2/3

POWER OFF Lan3-4/Lan1-2 Bypass

POWER OFF Lan3-4/Lan1-2 Pass Through

Set Bit 0 and 1 to High

 

mov

dx, 5Eh

 

 

in

al, dx

Read 5Eh's value to al

 

and

al, 0fch

Clear Bit 0 and 1

 

or

al, 03h

Set Bit 0 and 1 to high

 

out

dx, al

Write to 5Eh

 

Set Bit 0 and 1 to Low

 

mov

dx, 5Eh

 

 

in

al, dx

Read 5Eh's value to al

 

and

al, 0fch

Clear Bit 0 and 1

 

out

dx, al

Write to 5Eh

 

Set Bit 2 and 3 to High

 

mov

dx, 5Eh

 

 

in

al, dx

Read 5Eh's value to al

 

and

al, 0f3h

Clear Bit 2 and 3

 

or

al, 0ch

Set Bit 2 and 3 to high

 

out

dx, al

Write to 5Eh

 

Set Bit 2 and 3 to Low

 

mov

dx, 5Eh

 

 

in

al, dx

Read 5Eh's value to al

 

and

al, 0f3h

Clear Bit 2 and 3

 

out

dx, al

Write to 5Eh

 

2-13

Page 29
Image 29
MSI 3200 Network manual Set Bit 0 and 1 to High, Set Bit 0 and 1 to Low, Set Bit 2 and 3 to High, Set Bit 2 and 3 to Low