Home
last modified time | relevance | path

Searched refs:current_postcode (Results 1 – 2 of 2) sorted by relevance

/dragonfly/sys/platform/pc64/include/
H A Dsmp.h30 extern int current_postcode; /** XXX currently in mp_machdep.c */
31 #define POSTCODE(X) current_postcode = (X), \
32 outb(0x80, current_postcode)
33 #define POSTCODE_LO(X) current_postcode &= 0xf0, \
34 current_postcode |= ((X) & 0x0f), \
35 outb(0x80, current_postcode)
36 #define POSTCODE_HI(X) current_postcode &= 0x0f, \
37 current_postcode |= (((X) << 4) & 0xf0), \
38 outb(0x80, current_postcode)
/dragonfly/sys/platform/pc64/x86_64/
H A Dmp_machdep.c137 int current_postcode; variable