Contains the source code from the course work throughout my undergraduate Computer Engineering degree at Brigham Young University. There is a mixture of Go, Python, C, C++, Java, VHDL, Verilog, Matlab, Bash, Assembly, etc..
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#ifndef __PLATFORM_CONFIG_H_
|
|
#define __PLATFORM_CONFIG_H_
|
|
|
|
#ifdef __PPC__
|
|
#define CACHEABLE_REGION_MASK 0x80000080
|
|
#endif
|
|
|
|
#endif
|
|
|