52648623e0
Used command line to remove empty lines at end of file: find . -type f -exec sed -i -e :a -e '/^\n*$/{$d;N;};/\n$/ba' {} \; Change-Id: I816ac9666b6dbb7c7e47843672f0d5cc499766a3 Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr> Reviewed-on: http://review.coreboot.org/10446 Tested-by: build bot (Jenkins) Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net> Reviewed-by: Patrick Georgi <pgeorgi@google.com>
38 lines
528 B
C
38 lines
528 B
C
typedef unsigned char uint8_t;
|
|
typedef unsigned short uint16_t;
|
|
typedef unsigned int uint32_t;
|
|
|
|
|
|
struct iter {
|
|
uint32_t i;
|
|
};
|
|
|
|
struct point {
|
|
uint32_t i, j;
|
|
};
|
|
|
|
static void outb(uint8_t value, uint16_t port)
|
|
{
|
|
__builtin_outb(value, port);
|
|
}
|
|
|
|
|
|
static struct point mkpoint(void)
|
|
{
|
|
struct point p;
|
|
p.i = 1000;
|
|
p.j = 2000;
|
|
return p;
|
|
}
|
|
|
|
static void main(void)
|
|
{
|
|
struct iter iter;
|
|
for(iter.i = 0; iter.i < 32; iter.i++) {
|
|
outb(iter.i, 0x80);
|
|
}
|
|
struct point p;
|
|
p = mkpoint();
|
|
outb(p.i, 0x80);
|
|
outb(p.j, 0x80);
|
|
}
|