Add detection/dump support for ServerEngines SE-SM 4210-P01.
[coreboot.git] / util / romcc / tests / linux_test6.c
1 #include "linux_syscall.h"
2 #include "linux_console.h"
3
4 static void main(void)
5 {
6         static const int value[] = { 1, 0 };
7         const char *str;
8         if (value[1]) {
9                 print_debug("A\r\n");
10                 str = "Unbuffered\r\n";
11         } else {
12                 print_debug("B\r\n");
13                 str = "Registered\r\n";
14         }
15         print_debug(str);
16         _exit(0);
17 }