head	1.1;
access;
symbols;
locks; strict;
comment	@ * @;


1.1
date	2026.07.19.01.02.59;	author thorpej;	state Exp;
branches;
next	;
commitid	7eG8JkynXvUAtcOG;


desc
@@


1.1
log
@Reduce some diffs between Sun2 and Sun3:
- Add a <machine/promlib.h> wrapper for Sun3 that provides the same interface
  to the Sun monitor functions as Sun2 (which uses naming aligned with the
  SPARC port).
- Chage Sun3 pmap to use new naming.
- Adapt sun68k_trap.c, reming some #ifdefs.
@
text
@/*	$NetBSD$	*/

/*
 * Wrappers around the Sun3 monitor functions to that they may be
 * spelled and pronounced the same on Sun2 (which uses naming aligned
 * with SPARC) and Sun3.
 *
 * Written by Jason R. Thorpe, July 2026.
 * Public domain.
 */

#ifndef _SUN3_PROMLIB_H_
#define	_SUN3_PROMLIB_H_

#include <machine/mon.h>

#define	prom_abort	sunmon_abort
#define	prom_printf	mon_printf

#endif /* _SUN3_PROMLIB_H_ */
@
