You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
625 B
C

/*-------------------------------------------------------------------*\
| EVGAGPUCommon.h |
| |
| Common classes and functions for EVGA GPUs |
| |
| Chris M (Dr_No) 11th July 2021 |
\*-------------------------------------------------------------------*/
#pragma once
union u16_to_u8
{
uint16_t u16;
struct
{
uint8_t LSB;
uint8_t MSB;
};
};