2008-09-03 01:10:10 +00:00
|
|
|
/*
|
|
|
|
* FILE: hal/halx86/generic/timer.S
|
|
|
|
* COPYRIGHT: See COPYING in the top level directory
|
|
|
|
* PURPOSE: System Timer Interrupt and Management
|
|
|
|
* PROGRAMMER: Alex Ionescu (alex@relsoft.net)
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* INCLUDES ******************************************************************/
|
|
|
|
|
2010-11-27 22:12:15 +00:00
|
|
|
#include <asm.inc>
|
|
|
|
#include <ksamd64.inc>
|
2008-09-03 01:10:10 +00:00
|
|
|
|
|
|
|
/* GLOBALS *******************************************************************/
|
|
|
|
|
2009-12-28 17:53:26 +00:00
|
|
|
.data
|
2008-09-03 01:10:10 +00:00
|
|
|
|
2011-08-26 19:45:21 +00:00
|
|
|
PUBLIC MsgUnimplemented
|
2010-02-06 01:26:52 +00:00
|
|
|
MsgUnimplemented:
|
2009-12-28 17:53:26 +00:00
|
|
|
.asciz "WARNING: %s at %s:%d is UNIMPLEMENTED!\n"
|
|
|
|
|
|
|
|
|
2008-09-03 01:10:10 +00:00
|
|
|
/* FUNCTIONS *****************************************************************/
|
|
|
|
|
2009-12-28 17:53:26 +00:00
|
|
|
.code64
|
|
|
|
|
2009-11-10 02:40:48 +00:00
|
|
|
|
|
|
|
|
2010-11-27 22:12:15 +00:00
|
|
|
END
|