1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-09-12 13:55:55 +00:00
CLK/InstructionSets/x86/Implementation/InOut.hpp
2023-11-08 10:52:36 -05:00

37 lines
596 B
C++

//
// InOut.hpp
// Clock Signal
//
// Created by Thomas Harte on 08/11/2023.
// Copyright © 2023 Thomas Harte. All rights reserved.
//
#ifndef InOut_h
#define InOut_h
#include "../AccessType.hpp"
namespace InstructionSet::x86::Primitive {
template <typename IntT, typename ContextT>
void out(
uint16_t port,
read_t<IntT> value,
ContextT &context
) {
context.io.template out<IntT>(port, value);
}
template <typename IntT, typename ContextT>
void in(
uint16_t port,
write_t<IntT> value,
ContextT &context
) {
value = context.io.template in<IntT>(port);
}
}
#endif /* InOut_h */