12 lines
173 B
C
12 lines
173 B
C
// SPDX-FileCopyrightText: 2023 Mockba the Borg
|
|
//
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
#ifndef HOST_H
|
|
#define HOST_H
|
|
|
|
uint8 hostbdos(uint16 dmaaddr) {
|
|
return(0x00);
|
|
}
|
|
|
|
#endif
|