URL
https://opencores.org/ocsvn/aor3000/aor3000/trunk
Subversion Repositories aor3000
[/] [aor3000/] [trunk/] [linux/] [arch/] [mips/] [aor3000/] [early_printk.c] - Rev 2
Compare with Previous | Blame | View Log
/* * This file is subject to the terms and conditions of the GNU General Public * License. See the file "COPYING" in the main directory of this archive * for more details. * * Copyright (C) 2014 Aleksander Osman */ void prom_putchar(char c) { volatile char *console_ptr = (volatile char *)0xBFFFFFFF; (*console_ptr) = c; }