/* ** sysspec.h ** Header file for sysspec.c ** BYTEmark (tm) ** BYTE's Native Mode Benchmarks ** Rick Grehan, BYTE Magazine ** ** Creation: ** Revision: 3/95 ** ** DISCLAIMER ** The source, executable, and documentation files that comprise ** the BYTEmark benchmarks are made available on an "as is" basis. ** This means that we at BYTE Magazine have made every reasonable ** effort to verify that the there are no errors in the source and ** executable code. We cannot, however, guarantee that the programs ** are error-free. Consequently, McGraw-HIll and BYTE Magazine make ** no claims in regard to the fitness of the source code, executable ** code, and documentation of the BYTEmark. ** Furthermore, BYTE Magazine, McGraw-Hill, and all employees ** of McGraw-Hill cannot be held responsible for any damages resulting ** from the use of this code or the results obtained from using ** this code. */ /* ** Standard includes */ #include #include #include #include #include "nmglobal.h" #if !defined(MAC) && !defined(OSX) #include #endif /* ** System-specific includes */ /************** ** EXTERNALS ** **************/ extern unsigned long mem_array[2][MEM_ARRAY_SIZE]; extern int mem_array_ents; extern int global_align; /**************************** ** FUNCTION PROTOTYPES ** ****************************/ void InitMemArray(void); int AddMemArray(unsigned long true_addr, unsigned long adj_addr); int RemoveMemArray(unsigned long adj_addr,unsigned long *true_addr); void CreateFile(char *filename, int *errorcode); FILE *bmOpenFile(char *fname, int *errorcode); void CloseFile(FILE *fhandle, int *errorcode); void readfile(FILE *fhandle, unsigned long offset, unsigned long nbytes, void *buffer, int *errorcode); void writefile(FILE *fhandle, unsigned long offset, unsigned long nbytes, void *buffer, int *errorcode); unsigned long StartStopwatch(); unsigned long StopStopwatch(unsigned long startticks); unsigned long TicksToSecs(unsigned long tickamount); double TicksToFracSecs(unsigned long tickamount);