kolibrios/programs/network/autodhcp/trunk/common.inc
hidnplayr 5b0eb8ab98 Bugfixes & cleanup of AUTODHCP.
git-svn-id: svn://kolibrios.org@339 a494cfbc-eb01-0410-851d-a64ba20cac60
2007-02-10 19:10:48 +00:00

17 lines
255 B
PHP

macro wait time {
mov ebx,time
mov eax,5
int 0x40
}
macro get_time_counter result {
mov eax,26
mov ebx,9
int 0x40
mov result,eax
}
macro exit {
mov eax,-1
int 0x40
}