bn68000.c
Upload User: zbbssh
Upload Date: 2007-01-08
Package Size: 196k
Code Size: 0k
Category:

CA program

Development Platform:

C/C++

  1. /*
  2.  * bn68000.c - bnInit() for Motorola 680x0 family, 16 or 32-bit.
  3.  *
  4.  * Written in 1995 by Colin Plumb.  I'm not going to embarass myself
  5.  * by claiming copyright on something this trivial.
  6.  */
  7. #include "lbn.h"
  8. #include "bn16.h"
  9. #include "bn32.h"
  10. #ifndef BNINCLUDE
  11. #error You must define BNINCLUDE to lbn68000.h to use assembly primitives.
  12. #endif
  13. void
  14. bnInit(void)
  15. {
  16. if (is68020())
  17. bnInit_32();
  18. else
  19. bnInit_16();
  20. }