forked from dhansel/Altair8800
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathimage.h
More file actions
20 lines (14 loc) · 663 Bytes
/
image.h
File metadata and controls
20 lines (14 loc) · 663 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// -----------------------------------------------------------------------------
// Altair 8800 Simulator
// Copyright (C) 2017 David Hansel
// -----------------------------------------------------------------------------
#ifndef IMAGE_H
#define IMAGE_H
#include <Arduino.h>
#define IMAGE_FLOPPY 0
#define IMAGE_HDSK 1
const char *image_get_dir_content(byte image_type);
bool image_get_filename(byte image_type, byte image_num, char *filename, int buf_len, bool check_exist = true);
const char *image_get_filename(byte image_type, byte image_num, bool check_exist = true);
const char *image_get_description(byte image_type, byte image_num);
#endif