]> Joshua Wise's Git repositories - netwatch.git/blob - tools/poke-rls-asm.S
Convert the poker to not bother to wait.
[netwatch.git] / tools / poke-rls-asm.S
1 .global poke
2 poke:
3         # Preload registers: $0x1BADD00D
4         mov $0x1BADD00D, %ecx
5
6         # Parameter: I/O port to set bit 2 of
7         mov 4(%esp), %edx
8         inl %dx, %eax
9         or $4, %eax
10         outl %eax, %dx
11
12         # Maybe SMM poked something?
13         mov %ecx, %eax
14         ret
This page took 0.024891 seconds and 4 git commands to generate.