src/version.h.in

Sat, 17 Nov 2012 21:28:48 +0000

author
Philip Pemberton <philpem@philpem.me.uk>
date
Sat, 17 Nov 2012 21:28:48 +0000
changeset 113
d3bb6a6a04b7
parent 14
7a98c853715e
permissions
-rw-r--r--

ACCESS_CHECK_RD should return the right number of bits!

If the ACCESS_CHECK_RD() macro detects a page fault, it always returns a
32-bit error response ("all bus pins high"). Musashi really doesn't like it
when we pass in a 32-bit value when it expects a 16-bit one!

     1 #define VER_COMPILE_DATETIME	"@@datetime@@"
     2 #define VER_COMPILE_DATE		"@@date@@"
     3 #define VER_COMPILE_TIME		"@@time@@"
     4 #define VER_COMPILE_BY			"@@whoami@@"
     5 #define VER_COMPILE_HOST		"@@hostname@@"
     6 #define VER_COMPILER			"@@compiler@@"
     7 #define VER_BUILD_TYPE			"@@buildtype@@"
     8 #define VER_CFLAGS				"@@cflags@@"
    10 #define VER_MAJOR				@@majorver@@
    11 #define VER_MINOR				@@minorver@@
    12 #define VER_BUILDNUM			@@buildnum@@
    13 #define VER_EXTRA				"@@extraver@@"
    14 #define VER_VCSREV				"@@vcsstr@@"
    16 #define VER_FULLSTR				"@@fullverstr@@"