summaryrefslogtreecommitdiff
path: root/src/include/cpu/x86/post_code.h
blob: de1100607ad3cd771dea4696e2e0d3c47c7cbe07 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef __X86_POST_CODE_H__
#define __X86_POST_CODE_H__

#include <console/post_codes.h>

#if CONFIG(POST_IO) && !(ENV_BOOTBLOCK && CONFIG(NO_EARLY_BOOTBLOCK_POSTCODES))
#define post_code(value)        \
	movb    $value, %al;    \
	outb    %al, $CONFIG_POST_IO_PORT

#else
#define post_code(value)
#endif

#endif /* __X86_POST_CODE_H__ */