/* Longer test that actually waits for A20 to come on line; this is useful when dealing with the KBC or other slow external circuitry. */ static int __bootcode a20_test_long(void) { return a20_test(A20_TEST_LONG); }
/* Longer test that actually waits for A20 to come on line; this is useful when dealing with the KBC or other slow external circuitry. */ static int a20_test_long(void) { return a20_test(A20_TEST_LONG); }
/* Quick test to see if A20 is already enabled */ static int __bootcode a20_test_short(void) { return a20_test(A20_TEST_SHORT); }
/* Quick test to see if A20 is already enabled */ static int a20_test_short(void) { return a20_test(A20_TEST_SHORT); }