#include <stdlib.h>
#include <stdio.h>
#include <stdint.h>
#include <inttypes.h>

//struct int40_t {
//}


int main(int argc, char **argv){
	//uint16_t two_b[2];
        union{ uint16_t a[2]; uint32_t b;}x;


	//struct pwrlimit {
	//	//int8_t filler;
	//	int16_t limitAC;
	//	int16_t limitDC;
	//}power;

	//uint64_t tmp = 0;
	//power.filler = 4;
	//power.limitAC = 60;
	//power.limitDC = 40;
	//tmp = (uint64_t)power;

	x.a[0] = 100;
	x.a[1] = 80;


	printf("%X - %"PRIu32"\n", x.b, x.b);


	return 0;
}
