mirror of
https://github.com/TomHarte/CLK.git
synced 2024-12-23 20:29:42 +00:00
Corrects missing includes in the SerialBus, Electron Video and Typer.
This commit is contained in:
parent
a16ca65825
commit
f7f2736d4d
@ -8,6 +8,8 @@
|
||||
|
||||
#include "SerialBus.hpp"
|
||||
|
||||
#include <cstdio>
|
||||
|
||||
using namespace Commodore::Serial;
|
||||
|
||||
const char *::Commodore::Serial::StringForLine(Line line) {
|
||||
|
@ -9,6 +9,8 @@
|
||||
#ifndef SerialBus_hpp
|
||||
#define SerialBus_hpp
|
||||
|
||||
#include <cstdint>
|
||||
#include <memory>
|
||||
#include <vector>
|
||||
|
||||
namespace Commodore {
|
||||
|
@ -8,6 +8,8 @@
|
||||
|
||||
#include "Video.hpp"
|
||||
|
||||
#include <cstring>
|
||||
|
||||
using namespace Electron;
|
||||
|
||||
#define graphics_line(v) ((((v) >> 7) - first_graphics_line + field_divider_line) % field_divider_line)
|
||||
|
@ -7,7 +7,9 @@
|
||||
//
|
||||
|
||||
#include "Typer.hpp"
|
||||
#include <stdlib.h>
|
||||
|
||||
#include <cstdlib>
|
||||
#include <cstring>
|
||||
|
||||
using namespace Utility;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user