Remove unused reset code

This commit is contained in:
Jeremy Soller
2020-02-03 15:14:10 -07:00
parent e7c80c370c
commit 3692bed6b2
2 changed files with 0 additions and 11 deletions

View File

@ -1,6 +0,0 @@
#ifndef _ARCH_RESET_H
#define _ARCH_RESET_H
void reset(void);
#endif // _ARCH_RESET_H

View File

@ -1,5 +0,0 @@
#include <arch/reset.h>
void reset(void) {
__asm__("ljmp 0");
}