Files
lk/platform/vax/timer.c
Travis Geiselbrecht 89705cb065 [arch][vax] initial stab at booting on a vax
Booting on a real MicroVAX 3100/40 via netboot and on simh emulating a
micrvax 3900. Doesn't fully work, lots of stuff is stubbed out, but it
starts to run and hits unimplemented bits and stops.
2019-10-12 21:54:04 -07:00

19 lines
467 B
C

/*
* Copyright (c) 2019 Travis Geiselbrecht
*
* Use of this source code is governed by a MIT-style
* license that can be found in the LICENSE file or at
* https://opensource.org/licenses/MIT
*/
#include <lk/debug.h>
#include <lk/err.h>
#include <platform.h>
#include <platform/timer.h>
// stubbed out timer
status_t platform_set_periodic_timer(platform_timer_callback callback, void *arg, lk_time_t interval) {
return NO_ERROR;
PANIC_UNIMPLEMENTED;
}