The Function get the MainBoard serial Number
#include <iostream>
using namespace std;
union aregister
{
int theint;
unsigned bits[32];
};
union tonibbles
{
int integer;
short parts[2];
};
void Get
serial()
{
int part1,part2,part3;
aregister issupported;
int buffer;
__asm
{
mov eax, 01h
CPU...
Console
C++