From 945b698f82279fdb42f83f6a3eb2e6f74db2869c Mon Sep 17 00:00:00 2001 From: Arthur Heymans Date: Thu, 28 Nov 2019 16:14:56 +0100 Subject: util/romcc: Drop romcc support Finally all boards use a GCC compiled bootblock! Change-Id: I0c9a1b19dbdc32b43875da7d685718bae9d7f5f4 Signed-off-by: Arthur Heymans Reviewed-on: https://review.coreboot.org/c/coreboot/+/37337 Reviewed-by: HAOUAS Elyes Reviewed-by: Jacob Garber Tested-by: build bot (Jenkins) --- util/romcc/tests/simple_test69.c | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 util/romcc/tests/simple_test69.c (limited to 'util/romcc/tests/simple_test69.c') diff --git a/util/romcc/tests/simple_test69.c b/util/romcc/tests/simple_test69.c deleted file mode 100644 index c01338fc62..0000000000 --- a/util/romcc/tests/simple_test69.c +++ /dev/null @@ -1,22 +0,0 @@ -static void outb(unsigned char value, unsigned short port) -{ - __builtin_outb(value, port); -} - -static void pnp_write_config(void) -{ - unsigned char port; - unsigned char value; - unsigned char reg; - port = 0x2e; - value = 0x03; - reg = 0x07; - outb(reg, port); - outb(value, port +1); - outb(value -1, port +2); -} - -static void main(void) -{ - pnp_write_config(); -} -- cgit v1.2.3