-
Notifications
You must be signed in to change notification settings - Fork 0
/
osi.cpp
34 lines (26 loc) · 831 Bytes
/
osi.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
/**
@file osi.cpp
PUNY-80
TRS-80 disk image tool for Linux and other *nix operating systems
Copyright (c) 2024 Stefan Vogt and Shawn Sijnstra
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
See file LICENSE for details.
Based on TRS-80 Virtual Disk Kit by Miguel Dutra and Mike Gore.
*/
//---------------------------------------------------------------------------------
// Operating System Interface
//---------------------------------------------------------------------------------
#include "windows.h"
#include "p80.h"
#include "vdi.h"
#include "osi.h"
COSI::COSI()
: m_pVDI(NULL), m_dwFlags(0), m_DG()
{
}
COSI::~COSI()
{
}