From 05bc5bd2466f42a18fe467ee611f0a2e42bade39 Mon Sep 17 00:00:00 2001 From: austriancoder Date: Mon, 13 Sep 2004 16:23:16 +0000 Subject: added and converted comments into a doxygen friendly format --- dxr3cpu.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'dxr3cpu.c') diff --git a/dxr3cpu.c b/dxr3cpu.c index 4666e89..4186013 100644 --- a/dxr3cpu.c +++ b/dxr3cpu.c @@ -26,7 +26,7 @@ #include "dxr3memcpy.h" // ================================== -// const. +//! constructor cDxr3CPU::cDxr3CPU() { unsigned long eax,ebx,edx,unused; @@ -111,7 +111,7 @@ cDxr3CPU::cDxr3CPU() } // ================================== -// does the cpu support cpuid instructions +//! does the cpu support cpuid instructions bool cDxr3CPU::CheckCPUIDPresence() { // todo @@ -119,7 +119,7 @@ bool cDxr3CPU::CheckCPUIDPresence() } // ================================== -// cpuid function +//! cpuid function bool cDxr3CPU::cpuid(unsigned long function, unsigned long& out_eax, unsigned long& out_ebx, unsigned long& out_ecx, unsigned long& out_edx) { asm("cpuid": "=a" (out_eax), "=b" (out_ebx), "=c" (out_ecx), "=d" (out_edx) : "a" (function)); -- cgit v1.2.3