lsflib/include/lsf/cpuid.h
author Markus Bröker <mbroeker@volpe.spectre.org>
Wed, 18 Aug 2010 16:15:18 +0200
changeset 141 0b5befeb361e
parent 120 430dbec0c228
permissions -rw-r--r--
getbits: calculates the proper value but showed a different one

/**
 * test/demos/lsflib/include/cpuid.h
 * Copyright (C) 2008 Markus Broeker
 */

#ifndef __CPUID_H__
#define __CPUID_H__

#include <memory.h>

typedef unsigned long ULONG;

char *get_cpu_brand (int);
char *get_cpu_vendor (void);

ULONG get_cpu_function (ULONG, ULONG *, ULONG *, ULONG *, ULONG *);

#endif