2023-02-06 02:27:33 -06:00
|
|
|
#pragma once
|
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
#include "dosfs/dosfs.h"
|
|
|
|
#include "print.h"
|
|
|
|
#include "kbd.h"
|
|
|
|
#include "v86defs.h"
|
|
|
|
#include "helper.h"
|
|
|
|
|
2023-02-10 03:42:53 -06:00
|
|
|
void HexEditor(uint8_t *path, VOLINFO *vi);
|
2023-02-06 02:27:33 -06:00
|
|
|
void TextViewTest(uint8_t *path, VOLINFO *vi);
|
2023-02-06 05:49:03 -06:00
|
|
|
void ProgramLoadTest(uint8_t *path, VOLINFO *vi);
|