-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy pathimage.h
More file actions
22 lines (16 loc) · 717 Bytes
/
Copy pathimage.h
File metadata and controls
22 lines (16 loc) · 717 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// -----------------------------------------------------------------------------
// 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
#define IMAGE_TARBELL 2
#define IMAGE_CROMEMCO 3
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