Files
lk/platform/vax/platform_p.h
Travis Geiselbrecht d06fbd35c8 [arch][vax] redid the exception code, added timers
The port more or less fully works now, except for actual interrupt
driven io and proper atomics.

Also hit a floating point exception in the string benchmark.
2019-10-21 02:52:38 -07:00

20 lines
490 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
*/
#pragma once
#include <lib/cbuf.h>
// super simple cheesy system detection mechanism
// mostly cribbed from netbsd
extern uint32_t vax_cputype;
extern uint32_t vax_boardtype;
void platform_early_console_init(void);
void platform_console_init(void);
void platform_early_timer_init(void);