登录
首页 » 嵌入式系统 » 对摩托罗拉68K处理器系列Small RTOS的OMU K ernel写程序。

对摩托罗拉68K处理器系列Small RTOS的OMU K ernel写程序。

于 2022-01-21 发布 文件大小:169.54 kB
0 73
下载积分: 2 下载次数: 1

代码说明:

用于motorala 68K系列处理器的小实时多任务操作系统 The OMU Kernel was written to provide a cut-down Unix-like O/S for a home-made 6809-based home computer built by me, Steven Hosgood, in the early 1980s. This package contains the RTOS version of omu68k, derived from a port of the original 6809 code to the 68000 done by Terry Barnaby and me.-for motorala 68K processor series of small RTOS The OMU K ernel was written to provide a cut-down Unix-li ke O/S for a home-made 6809-based home computer built by me, Steven Hosgood. in the early 1980s. This package contains the RT OS version of omu68k. derived from a port of the original 6809 code to t he 68,000 Barnaby done by Terry and me.

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • stm32 内存分配管理
    应用背景内存管理,是指软件运行时对计算机内存资源的分配和使用的技术。其最主要的目的是如 何高效,快速的分配,并且在适当的时候释放和回收内存资源。内存管理的实现方法有很多种, 他们其实最终都是要实现2 个函数:malloc 和free;malloc 函数用于内存申请,free 函数用于 内存释放。 关键技术当指针p 调用malloc 申请内存的时候,先判断p 要分配的内存块数(m),然后从第n 项开 始,向下查找,直到找到m 块连续的空内存块(即对应内存管理表项为0),然后将这m 个内 存管理表项的值都设置为m(标记被占用),最后,把最后的这个空内存块的地址返回指针p, 完成一次分配。注意,如果当内存不够的时候(找到最后也没找到连续的m 块空闲内存),则 返回NULL 给p,表示分配失败。
    2022-02-10 14:18:07下载
    积分:1
  • Rijndael的VHDL语言实现
    Rijndael算法(AES)的VHDL语言实现。高级加密标准(英语: 请点击左侧文件开始预览 !预览只提供20%的代码片段,完整代码需下载后查看 加载中 侵权举报
    2022-04-01 21:12:04下载
    积分:1
  • tinyG网络开源6轴运动控制器
    tinyG添加网络选项。开源的6轴运动控制器包括硬件和软件。这些项目是工作的CNC控制器和3D打印机控制器。
    2022-07-14 21:32:52下载
    积分:1
  • 51单片机上移植UCOSII,通过调试,绝对经典
    51单片机上移植UCOSII,通过调试,绝对经典-51 MCU transplant UCOSII, debugging, absolute classic
    2022-02-10 15:20:07下载
    积分:1
  • 这是一本关于ArcIMS的门级读物。介绍了ArcIMS的安装配置,以及结构和相关资源的参考。...
    这是一本关于ArcIMS的入门级读物。介绍了ArcIMS的安装配置,以及结构和相关资源的参考。-ArcIMS
    2022-08-18 19:19:00下载
    积分:1
  • 一个经典的DSP实验程序,通过此指令实验的学习,可以更好的掌握DSP编程。...
    一个经典的DSP实验程序,通过此指令实验的学习,可以更好的掌握DSP编程。-A classic experimental procedures for the DSP, the passage of this directive experimental learning, can better grasp of DSP programming.
    2022-07-13 17:27:16下载
    积分:1
  • 国内还比较新的network processor的微代码开发,关于scratch ring的例子,用的uc语言,告诉你如何利用已有的宏和调用硬件资源。...
    国内还比较新的network processor的微代码开发,关于scratch ring的例子,用的uc语言,告诉你如何利用已有的宏和调用硬件资源。-domestic still relatively new network of micro-processor code development, on the scratch ring example, the uc language, tell you how to make use of the call-and hardware resources.
    2023-07-03 09:10:04下载
    积分:1
  • CRC16CRC32方法
    CRC16CRC32采用C语言编写,很容易移植到任何一个工程或项目里,注意把函数与函数声明放至对应的文件下即可。CRC16的文件夹下的Main.c为主函数的入口。
    2022-07-03 18:34:10下载
    积分:1
  • qprox公司的芯片qt60xx0的驱动程序,用到这个芯片的可以看一下...
    qprox公司的芯片qt60xx0的驱动程序,用到这个芯片的可以看一下-qprox the company
    2023-04-10 08:40:03下载
    积分:1
  • 总的来说,在uClinux上的开发和标准Linux还是很类似的。通常可以按照下面的步骤去设计和调试: 建立基于以太网的开发环境; 如果所设计的程序和硬件的关联不...
    总的来说,在uClinux上的开发和标准Linux还是很类似的。通常可以按照下面的步骤去设计和调试: 建立基于以太网的开发环境; 如果所设计的程序和硬件的关联不大,那么一定要在标准Linux上先编译和调试通过。灵活地使用gcc和gdb将大大节省时间; 将x86上的GCC编译好的应用程序用交叉编译工具来编译;如果编译时发现错误,那么很可能存在以下问题: 交叉编译器或库文件的路径不正确;最彻底的解决办法是重新装一次编译器; 遇到库不支持的函数;此时需要自己把函数的实现做成另外一个库供应用程序使用。如果是uClinux本身不支持的调用,那么就需要改写代码了。-Overall, the uClinux on the development and standard Linux is still very similar. Usually can use the following steps to design and debug : Ethernet-based development environment; If the design of the procedure and not linked to the hardware, then it must be the first standard Linux compiler and debugging through. Flexibility in the use of gdb and gcc will greatly save time; X86 will be on the GCC-compiled application with cross-compiler tool to compile; If you compile time error is found, it was very likely that the following issues : cross-compilers or libraries are not the correct path; The most radical solution is a re-installed time compiler; encountered does not support functions; At this time the need to
    2022-10-25 13:50:03下载
    积分:1
  • 696518资源总数
  • 104228会员总数
  • 45今日下载