mirror of
https://github.com/simh/simh.git
synced 2026-05-01 05:48:35 +00:00
Changed use of compile #defines which start with a _ character to not do this since defined symbols starting with _ are reserved to local compiler/runtime implementations in the C language. This addresses issue #32
This commit is contained in:
@@ -46,8 +46,8 @@
|
||||
encode the series within the type.
|
||||
*/
|
||||
|
||||
#ifndef _HP2100_CPU_H_
|
||||
#define _HP2100_CPU_H_ 0
|
||||
#ifndef HP2100_CPU_H_
|
||||
#define HP2100_CPU_H_ 0
|
||||
|
||||
#include <setjmp.h>
|
||||
|
||||
|
||||
@@ -33,8 +33,8 @@
|
||||
26-Sep-06 JDB Split from hp2100_cpu1.c
|
||||
*/
|
||||
|
||||
#ifndef _HP2100_CPU1_H_
|
||||
#define _HP2100_CPU1_H_
|
||||
#ifndef HP2100_CPU1_H_
|
||||
#define HP2100_CPU1_H_
|
||||
|
||||
|
||||
/* Register print encoding */
|
||||
|
||||
@@ -68,8 +68,8 @@
|
||||
*/
|
||||
|
||||
|
||||
#ifndef _HP2100_DEFS_H_
|
||||
#define _HP2100_DEFS_H_ 0
|
||||
#ifndef HP2100_DEFS_H_
|
||||
#define HP2100_DEFS_H_ 0
|
||||
|
||||
#include "sim_defs.h" /* simulator defns */
|
||||
|
||||
|
||||
@@ -27,8 +27,8 @@
|
||||
26-Sep-06 JDB Moved from hp2100_fp.c to simplify extensions
|
||||
*/
|
||||
|
||||
#ifndef _HP2100_FP_H_
|
||||
#define _HP2100_FP_H_
|
||||
#ifndef HP2100_FP_H_
|
||||
#define HP2100_FP_H_
|
||||
|
||||
/* Firmware floating-point routines */
|
||||
|
||||
|
||||
@@ -27,8 +27,8 @@
|
||||
12-Oct-06 JDB Altered x_trun for F-Series FFP compatibility
|
||||
*/
|
||||
|
||||
#ifndef _HP2100_FP1_H_
|
||||
#define _HP2100_FP1_H_ 0
|
||||
#ifndef HP2100_FP1_H_
|
||||
#define HP2100_FP1_H_ 0
|
||||
|
||||
|
||||
/* Special operands. */
|
||||
|
||||
Reference in New Issue
Block a user