mac-floppy-emu/floppy-emu-source-1.0L-F11/AVR/millitimer.h

24 lines
718 B
C
Executable File

/*
Floppy Emu, copyright 2013 Steve Chamberlin, "Big Mess o' Wires". All rights reserved.
Floppy Emu is licensed under a Creative Commons Attribution-NonCommercial 3.0 Unported
license. (CC BY-NC 3.0) The terms of the license may be viewed at
http://creativecommons.org/licenses/by-nc/3.0/
Based on a work at http://www.bigmessowires.com/macintosh-floppy-emu/
Permissions beyond the scope of this license may be available at www.bigmessowires.com
or from mailto:steve@bigmessowires.com.
*/
#ifndef MILLITIMER_H_
#define MILLITIMER_H_
#include <avr/io.h>
void millitimerInit();
void millitimerOn();
void millitimerOff();
uint32_t millis();
#endif /* MILLITIMER_H_ */