bn68000.c
来自「包含哈希,对称以及非对称的经典算法 包含经典事例」· C语言 代码 · 共 24 行
C
24 行
/* * bn68000.c - bnInit() for Motorola 680x0 family, 16 or 32-bit. * * Written in 1995 by Colin Plumb. I'm not going to embarass myself * by claiming copyright on something this trivial. */#include "lbn.h"#include "bn16.h"#include "bn32.h"#ifndef BNINCLUDE#error You must define BNINCLUDE to lbn68000.h to use assembly primitives.#endifvoidbnInit(void){ if (is68020()) bnInit_32(); else bnInit_16();}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?