Files
BloomPatched/src/Targets/Microchip/AVR/AVR8/Mega/Mega.hpp
Nav 6edfb7376a Tidied structure of all classes within the entire code base
Also some other small bits of tidying
2021-10-31 11:36:28 +00:00

17 lines
310 B
C++

#pragma once
#include "src/Targets/Microchip/AVR/AVR8/Avr8.hpp"
namespace Bloom::Targets::Microchip::Avr::Avr8Bit
{
class Mega: public Avr8
{
public:
explicit Mega(const Avr8& avr8): Avr8(avr8) {};
bool supportsPromotion() override {
return false;
}
};
}