在好例子网,分享、交流、成长!
您当前所在位置:首页C/C++ 开发实例嵌入式开发 → 《30天自制操作系统》 书附光盘

《30天自制操作系统》 书附光盘

嵌入式开发

下载此实例
  • 开发语言:C/C++
  • 实例大小:38.46M
  • 下载次数:17
  • 浏览次数:117
  • 发布时间:2023-01-14
  • 实例类别:嵌入式开发
  • 发 布 人:老刘
  • 文件格式:.iso
  • 所需积分:0
 相关标签: 操作系统 光盘 30 自制 系统

实例介绍

【实例简介】《30天自制操作系统》 书附光盘

【实例截图】

from clipboard

【核心代码】

.
├── Autorun.inf
├── ReadMe.txt
├── bcdw
│   ├── bcdw.bin
│   ├── bcdw.ini
│   └── loader.bin
├── boot.catalog
├── haritomo
│   ├── Haritomo.exe
│   └── text
│       ├── BayOS.txt
│       ├── HariboteOS.txt
│       ├── HiyOS.txt
│       ├── NewMember.txt
│       ├── OSASK.txt
│       ├── OSAkkie.txt
│       ├── rapuOS.txt
│       └── seriboteOS.txt
├── kaos.ico
├── osimage
│   ├── bayos.img
│   ├── haribote.img
│   ├── hiyos.img
│   ├── mtorz.img
│   ├── notice-osask.txt
│   ├── osakkie.img
│   ├── osask.img
│   ├── osaskfdi.img
│   ├── osasqemu.img
│   ├── rapuos.img
│   └── seribote.img
├── ossrc
│   ├── BayOS
│   │   ├── !cons_9x.bat
│   │   ├── !cons_nt.bat
│   │   ├── BAYOS.BM5
│   │   ├── CVS
│   │   │   ├── Entries
│   │   │   ├── Repository
│   │   │   ├── Root
│   │   │   └── Template
│   │   ├── MONA-12.MN5
│   │   ├── Makefile
│   │   ├── apilib
│   │   │   ├── CVS
│   │   │   │   ├── Entries
│   │   │   │   ├── Repository
│   │   │   │   ├── Root
│   │   │   │   └── Template
│   │   │   ├── alloca.nas
│   │   │   ├── api_beep.cpp
│   │   │   ├── api_boxfilwin.cpp
│   │   │   ├── api_closewin.cpp
│   │   │   ├── api_end.cpp
│   │   │   ├── api_fclose.cpp
│   │   │   ├── api_fopen.cpp
│   │   │   ├── api_fread.cpp
│   │   │   ├── api_free.cpp
│   │   │   ├── api_fsize.cpp
│   │   │   ├── api_getkey.cpp
│   │   │   ├── api_linewin.cpp
│   │   │   ├── api_malloc.cpp
│   │   │   ├── api_openwin.cpp
│   │   │   ├── api_point.cpp
│   │   │   ├── api_putchar.cpp
│   │   │   ├── api_putstr0.cpp
│   │   │   ├── api_putstr1.cpp
│   │   │   ├── api_putstrwin.cpp
│   │   │   ├── api_refreshwin.cpp
│   │   │   ├── memcpy.cpp
│   │   │   ├── printf.cpp
│   │   │   └── syscall.h
│   │   ├── apps
│   │   │   ├── CVS
│   │   │   │   ├── Entries
│   │   │   │   ├── Repository
│   │   │   │   ├── Root
│   │   │   │   └── Template
│   │   │   ├── bball.cpp
│   │   │   ├── cat.cpp
│   │   │   ├── hello.cpp
│   │   │   └── noiz2bg.cpp
│   │   ├── asmhead.nas
│   │   ├── baygui
│   │   │   ├── CVS
│   │   │   │   ├── Entries
│   │   │   │   ├── Repository
│   │   │   │   ├── Root
│   │   │   │   └── Template
│   │   │   ├── awt
│   │   │   │   ├── CVS
│   │   │   │   │   ├── Entries
│   │   │   │   │   ├── Repository
│   │   │   │   │   ├── Root
│   │   │   │   │   └── Template
│   │   │   │   └── event
│   │   │   │       └── CVS
│   │   │   │           ├── Entries
│   │   │   │           ├── Repository
│   │   │   │           ├── Root
│   │   │   │           └── Template
│   │   │   ├── lang
│   │   │   │   ├── CVS
│   │   │   │   │   ├── Entries
│   │   │   │   │   ├── Repository
│   │   │   │   │   ├── Root
│   │   │   │   │   └── Template
│   │   │   │   ├── Integer.cpp
│   │   │   │   ├── Integer.h
│   │   │   │   ├── Object.cpp
│   │   │   │   └── Object.h
│   │   │   └── util
│   │   │       ├── ArrayList.cpp
│   │   │       ├── ArrayList.h
│   │   │       └── CVS
│   │   │           ├── Entries
│   │   │           ├── Repository
│   │   │           ├── Root
│   │   │           └── Template
│   │   ├── bayos.cpp
│   │   ├── bayos.h
│   │   ├── dependencies
│   │   ├── driver
│   │   │   ├── CVS
│   │   │   │   ├── Entries
│   │   │   │   ├── Repository
│   │   │   │   ├── Root
│   │   │   │   └── Template
│   │   │   ├── beep.cpp
│   │   │   ├── beep.h
│   │   │   ├── clock.cpp
│   │   │   ├── clock.h
│   │   │   ├── dtk5s.cpp
│   │   │   ├── dtk5s.h
│   │   │   ├── file.cpp
│   │   │   ├── file.h
│   │   │   ├── keyboard.cpp
│   │   │   ├── keyboard.h
│   │   │   ├── mouse.cpp
│   │   │   ├── mouse.h
│   │   │   ├── pic.cpp
│   │   │   ├── pic.h
│   │   │   ├── pit.cpp
│   │   │   ├── pit.h
│   │   │   ├── rtc.cpp
│   │   │   ├── rtc.h
│   │   │   ├── timer.cpp
│   │   │   └── timer.h
│   │   ├── ipl10.nas
│   │   ├── license.txt
│   │   ├── make.bat
│   │   ├── mkimg.exe
│   │   ├── naskfunc.nas
│   │   ├── sys
│   │   │   ├── CVS
│   │   │   │   ├── Entries
│   │   │   │   ├── Repository
│   │   │   │   ├── Root
│   │   │   │   └── Template
│   │   │   ├── List.h
│   │   │   ├── font_hankaku.h
│   │   │   ├── font_latin1.h
│   │   │   ├── icon.h
│   │   │   └── types.h
│   │   └── system
│   │       ├── CVS
│   │       │   ├── Entries
│   │       │   ├── Repository
│   │       │   ├── Root
│   │       │   └── Template
│   │       ├── console.cpp
│   │       ├── console.h
│   │       ├── descriptor.cpp
│   │       ├── descriptor.h
│   │       ├── ihandler.cpp
│   │       ├── ihandler.h
│   │       ├── memory.cpp
│   │       ├── memory.h
│   │       ├── scheduler.cpp
│   │       ├── scheduler.h
│   │       ├── sheet.cpp
│   │       └── sheet.h
│   ├── HiyOS
│   │   ├── !cons_9x.bat
│   │   ├── !cons_nt.bat
│   │   ├── Makefile
│   │   ├── alloca.nas
│   │   ├── apilib.h
│   │   ├── app_make.txt
│   │   ├── asmhead_256.nas
│   │   ├── asmhead_64k.nas
│   │   ├── bootpack.cpp
│   │   ├── bootpack.h
│   │   ├── console.cpp
│   │   ├── cpuid
│   │   │   ├── !cons_9x.bat
│   │   │   ├── !cons_nt.bat
│   │   │   ├── Makefile
│   │   │   ├── app_make.txt
│   │   │   ├── asm.h
│   │   │   ├── asm.nas
│   │   │   ├── cpuid.c
│   │   │   ├── cpuid.hrb
│   │   │   └── make.bat
│   │   ├── cpuid.hrb
│   │   ├── dsctbl.cpp
│   │   ├── fifo.cpp
│   │   ├── file.cpp
│   │   ├── graphic.cpp
│   │   ├── hankaku.txt
│   │   ├── haribote.rul
│   │   ├── hrbwall.jpg
│   │   ├── int.cpp
│   │   ├── ipl20.nas
│   │   ├── jpeg.cpp
│   │   ├── keyboard.cpp
│   │   ├── make.bat
│   │   ├── memory.cpp
│   │   ├── mouse.cpp
│   │   ├── mtask.cpp
│   │   ├── naskfunc.nas
│   │   ├── nihongo.fnt
│   │   ├── readme.txt
│   │   ├── sheet.cpp
│   │   ├── tek.cpp
│   │   ├── timer.cpp
│   │   └── window.cpp
│   ├── Mtorz
│   │   ├── !cons_9x.bat
│   │   ├── !cons_nt.bat
│   │   ├── Makefile
│   │   ├── Readme.txt
│   │   ├── ipl.nas
│   │   ├── make.bat
│   │   └── mtorz.nas
│   ├── OSASK
│   │   ├── !cons_9x.bat
│   │   ├── !cons_nt.bat
│   │   ├── GUIGUI00.RUL
│   │   ├── Makefile
│   │   ├── ankfont0
│   │   │   ├── ibmank0.txt
│   │   │   ├── newstyle.txt
│   │   │   ├── txt2bin.c
│   │   │   ├── txt2bin.exe
│   │   │   └── win31.txt
│   │   ├── base.nap
│   │   ├── bochs
│   │   │   ├── Makefile
│   │   │   ├── Makefile~
│   │   │   └── osalink1.opt
│   │   ├── boot32.ask
│   │   ├── changes.txt
│   │   ├── fdimg0at.tek
│   │   ├── fdimg0tw.tek
│   │   ├── init.ask
│   │   ├── license.txt
│   │   ├── linkrule.rul
│   │   ├── make.bat
│   │   ├── make.txt
│   │   ├── make_com.txt
│   │   ├── make_inc.txt
│   │   ├── make_pk0.txt
│   │   ├── make_wm0.txt
│   │   ├── nec98
│   │   │   ├── Makefile
│   │   │   ├── decode0.ask
│   │   │   ├── fdcdrv0.ask
│   │   │   ├── keymos0.ask
│   │   │   ├── osalink1.opt
│   │   │   ├── timerdrv.ask
│   │   │   └── vgadrv0.ask
│   │   ├── osaipln0.bin
│   │   ├── osaiplt0.bin
│   │   ├── osaskbs1.bin
│   │   ├── osaskinc.ask
│   │   ├── papi0.ask
│   │   ├── pcat
│   │   │   ├── Makefile
│   │   │   ├── decode0.ask
│   │   │   ├── fdcdrv0.ask
│   │   │   ├── keymos0.ask
│   │   │   ├── osalink1.opt
│   │   │   ├── timerdrv.ask
│   │   │   ├── vesa16.ask
│   │   │   ├── vesa32.ask
│   │   │   ├── vesa8.ask
│   │   │   └── vgadrv0.ask
│   │   ├── pioneer0.ask
│   │   ├── pokon0.c
│   │   ├── pokon0.h
│   │   ├── qemu
│   │   │   ├── Makefile
│   │   │   ├── OSASK0.PSF
│   │   │   ├── edimgopt.txt
│   │   │   ├── osalink1.opt
│   │   │   └── timerdrv.tek
│   │   ├── readme.txt
│   │   ├── sgg00lib
│   │   │   ├── Makefile
│   │   │   ├── execcmd.ask
│   │   │   ├── execcmd0.ask
│   │   │   ├── execcmd1.ask
│   │   │   ├── fdebug.c
│   │   │   ├── fpokon.c
│   │   │   ├── fwinman.c
│   │   │   ├── init.c
│   │   │   └── sysgg00.h
│   │   ├── tapi0.ask
│   │   ├── towns
│   │   │   ├── Makefile
│   │   │   ├── decode0.ask
│   │   │   ├── fdcdrv0.ask
│   │   │   ├── keymos0.ask
│   │   │   ├── osalink1.opt
│   │   │   ├── timerdrv.ask
│   │   │   ├── towns15.ask
│   │   │   ├── vesa16.ask
│   │   │   └── vgadrv0.ask
│   │   ├── vmware3
│   │   │   ├── Makefile
│   │   │   ├── Makefile~
│   │   │   └── osalink1.opt
│   │   └── winman0.c
│   ├── OSAkkie
│   │   ├── !cons_nt.bat
│   │   ├── HowToMake.txt
│   │   ├── Makefile
│   │   ├── apilib
│   │   │   ├── !cons_nt.bat
│   │   │   ├── Makefile
│   │   │   ├── alloca.nas
│   │   │   ├── api001.nas
│   │   │   ├── api002.nas
│   │   │   ├── api003.nas
│   │   │   ├── api004.nas
│   │   │   ├── api005.nas
│   │   │   ├── api006.nas
│   │   │   ├── api007.nas
│   │   │   ├── api008.nas
│   │   │   ├── api009.nas
│   │   │   ├── api010.nas
│   │   │   ├── api011.nas
│   │   │   ├── api012.nas
│   │   │   ├── api013.nas
│   │   │   ├── api014.nas
│   │   │   ├── api015.nas
│   │   │   ├── api016.nas
│   │   │   ├── api017.nas
│   │   │   ├── api018.nas
│   │   │   ├── api019.nas
│   │   │   ├── api020.nas
│   │   │   ├── api021.nas
│   │   │   ├── api022.nas
│   │   │   ├── api023.nas
│   │   │   ├── api024.nas
│   │   │   ├── api025.nas
│   │   │   ├── api026.nas
│   │   │   ├── api027.nas
│   │   │   ├── api031.nas
│   │   │   ├── make.bat
│   │   │   ├── osak4002.nas
│   │   │   ├── osak4003.nas
│   │   │   ├── tomo1001.nas
│   │   │   └── tomo1003.nas
│   │   ├── apps
│   │   │   ├── !cons_nt.bat
│   │   │   ├── !new_hrb
│   │   │   │   ├── !cons_nt.bat
│   │   │   │   ├── Makefile
│   │   │   │   └── make.bat
│   │   │   ├── Makefile
│   │   │   ├── apilib.h
│   │   │   ├── app_make.txt
│   │   │   ├── bball
│   │   │   │   ├── !cons_nt.bat
│   │   │   │   ├── Makefile
│   │   │   │   ├── bball.c
│   │   │   │   └── make.bat
│   │   │   ├── bonno
│   │   │   │   ├── !cons_nt.bat
│   │   │   │   ├── Makefile
│   │   │   │   ├── bonno.c
│   │   │   │   └── make.bat
│   │   │   ├── calc
│   │   │   │   ├── !cons_nt.bat
│   │   │   │   ├── Makefile
│   │   │   │   ├── calc.c
│   │   │   │   └── make.bat
│   │   │   ├── color
│   │   │   │   ├── !cons_nt.bat
│   │   │   │   ├── Makefile
│   │   │   │   ├── color.c
│   │   │   │   └── make.bat
│   │   │   ├── csvv
│   │   │   │   ├── !cons_nt.bat
│   │   │   │   ├── Makefile
│   │   │   │   ├── csvv.c
│   │   │   │   └── make.bat
│   │   │   ├── cvtg
│   │   │   │   ├── !cons_nt.bat
│   │   │   │   ├── Makefile
│   │   │   │   ├── cvtg.c
│   │   │   │   └── make.bat
│   │   │   ├── gview
│   │   │   │   ├── !cons_9x.bat
│   │   │   │   ├── !cons_nt.bat
│   │   │   │   ├── Makefile
│   │   │   │   ├── bmp.nasm
│   │   │   │   ├── bmp.obj
│   │   │   │   ├── gview.c
│   │   │   │   ├── ico.c
│   │   │   │   ├── ico.obj
│   │   │   │   ├── jpeg.c
│   │   │   │   ├── jpeg.obj
│   │   │   │   └── make.bat
│   │   │   ├── haribote.rul
│   │   │   ├── invader
│   │   │   │   ├── !cons_9x.bat
│   │   │   │   ├── !cons_nt.bat
│   │   │   │   ├── Makefile
│   │   │   │   ├── invader.c
│   │   │   │   └── make.bat
│   │   │   ├── keyview
│   │   │   │   ├── !cons_nt.bat
│   │   │   │   ├── Makefile
│   │   │   │   ├── keyview.c
│   │   │   │   └── make.bat
│   │   │   ├── kuha
│   │   │   │   ├── !cons_nt.bat
│   │   │   │   ├── Makefile
│   │   │   │   ├── kuha.c
│   │   │   │   └── make.bat
│   │   │   ├── luckynum
│   │   │   │   ├── !cons_nt.bat
│   │   │   │   ├── Makefile
│   │   │   │   ├── luckynum.c
│   │   │   │   └── make.bat
│   │   │   ├── make.bat
│   │   │   ├── menu
│   │   │   │   ├── !cons_nt.bat
│   │   │   │   ├── Makefile
│   │   │   │   ├── make.bat
│   │   │   │   └── menu.c
│   │   │   ├── mmlplay
│   │   │   │   ├── !cons_9x.bat
│   │   │   │   ├── !cons_nt.bat
│   │   │   │   ├── Makefile
│   │   │   │   ├── make.bat
│   │   │   │   └── mmlplay.c
│   │   │   ├── mtorz
│   │   │   │   ├── !cons_nt.bat
│   │   │   │   ├── Makefile
│   │   │   │   ├── make.bat
│   │   │   │   └── mtorz.c
│   │   │   ├── noodle
│   │   │   │   ├── !cons_nt.bat
│   │   │   │   ├── Makefile
│   │   │   │   ├── make.bat
│   │   │   │   └── noodle.c
│   │   │   ├── osakcnt
│   │   │   │   ├── !cons_nt.bat
│   │   │   │   ├── Makefile
│   │   │   │   ├── make.bat
│   │   │   │   └── osakcnt.c
│   │   │   ├── tview
│   │   │   │   ├── !cons_9x.bat
│   │   │   │   ├── !cons_nt.bat
│   │   │   │   ├── Makefile
│   │   │   │   ├── make.bat
│   │   │   │   └── tview.c
│   │   │   ├── type
│   │   │   │   ├── !cons_nt.bat
│   │   │   │   ├── Makefile
│   │   │   │   ├── make.bat
│   │   │   │   └── type.c
│   │   │   ├── walk
│   │   │   │   ├── !cons_nt.bat
│   │   │   │   ├── Makefile
│   │   │   │   ├── make.bat
│   │   │   │   └── walk.c
│   │   │   └── winhello
│   │   │       ├── !cons_nt.bat
│   │   │       ├── Makefile
│   │   │       ├── make.bat
│   │   │       ├── winhello.c
│   │   │       └── winhello.org
│   │   ├── font
│   │   │   ├── fontconv.exe
│   │   │   ├── makefnt6.exe
│   │   │   ├── minifont.bmp
│   │   │   └── osakkie.bmp
│   │   ├── fukurou.jpg
│   │   ├── make.bat
│   │   ├── maro.jpg
│   │   ├── mmldata
│   │   │   ├── daigo.mml
│   │   │   ├── daiku.mml
│   │   │   ├── fujisan.mml
│   │   │   └── kirakira.mml
│   │   ├── nyanpo.ico
│   │   ├── osakkie
│   │   │   ├── !cons_nt.bat
│   │   │   ├── Makefile
│   │   │   ├── api.c
│   │   │   ├── asmhead.nas
│   │   │   ├── bmp.nasm
│   │   │   ├── bmpobj.bak
│   │   │   ├── bootpack.c
│   │   │   ├── bootpack.h
│   │   │   ├── console.c
│   │   │   ├── def_ipl10.nas
│   │   │   ├── dsctbl.c
│   │   │   ├── fifo.c
│   │   │   ├── file.c
│   │   │   ├── graphic.c
│   │   │   ├── hankaku.txt
│   │   │   ├── haribote.rul
│   │   │   ├── ico.c
│   │   │   ├── int.c
│   │   │   ├── ipl.nas
│   │   │   ├── jpeg.c
│   │   │   ├── keyboard.c
│   │   │   ├── make.bat
│   │   │   ├── memory.c
│   │   │   ├── mikanihongo.fnt
│   │   │   ├── minifnt.bin
│   │   │   ├── minifnt.txt
│   │   │   ├── mouse.c
│   │   │   ├── mtask.c
│   │   │   ├── naskfunc.nas
│   │   │   ├── nihongo.fnt
│   │   │   ├── picture.c
│   │   │   ├── sheet.c
│   │   │   ├── tek.c
│   │   │   ├── timer.c
│   │   │   └── window.c
│   │   ├── osakkie.bhs
│   │   ├── osakkie.hsf
│   │   ├── sample.csv
│   │   ├── sample.txt
│   │   └── sample2.csv
│   ├── rapuOS
│   │   ├── !cons_9x.bat
│   │   ├── !cons_nt.bat
│   │   ├── Makefile
│   │   ├── apilib
│   │   │   ├── !cons_9x.bat
│   │   │   ├── !cons_nt.bat
│   │   │   ├── Makefile
│   │   │   ├── alloca.nas
│   │   │   ├── api001.nas
│   │   │   ├── api002.nas
│   │   │   ├── api003.nas
│   │   │   ├── api004.nas
│   │   │   ├── api005.nas
│   │   │   ├── api006.nas
│   │   │   ├── api007.nas
│   │   │   ├── api008.nas
│   │   │   ├── api009.nas
│   │   │   ├── api010.nas
│   │   │   ├── api011.nas
│   │   │   ├── api012.nas
│   │   │   ├── api013.nas
│   │   │   ├── api014.nas
│   │   │   ├── api015.nas
│   │   │   ├── api016.nas
│   │   │   ├── api017.nas
│   │   │   ├── api018.nas
│   │   │   ├── api019.nas
│   │   │   ├── api020.nas
│   │   │   ├── api021.nas
│   │   │   ├── api022.nas
│   │   │   ├── api023.nas
│   │   │   ├── api024.nas
│   │   │   ├── api025.nas
│   │   │   ├── api026.nas
│   │   │   ├── api027.nas
│   │   │   ├── api028.nas
│   │   │   ├── api029.nas
│   │   │   ├── api030.nas
│   │   │   ├── api031.nas
│   │   │   ├── api032.nas
│   │   │   ├── api033.nas
│   │   │   ├── api034.nas
│   │   │   ├── api035.nas
│   │   │   ├── api036.nas
│   │   │   ├── apilib.lib
│   │   │   └── make.bat
│   │   ├── apilib.h
│   │   ├── app_make.txt
│   │   ├── bball
│   │   │   ├── !cons_9x.bat
│   │   │   ├── !cons_nt.bat
│   │   │   ├── Makefile
│   │   │   ├── bball.c
│   │   │   ├── bball.hrb
│   │   │   └── make.bat
│   │   ├── color
│   │   │   ├── !cons_9x.bat
│   │   │   ├── !cons_nt.bat
│   │   │   ├── Makefile
│   │   │   ├── color.c
│   │   │   ├── color.hrb
│   │   │   └── make.bat
│   │   ├── color2
│   │   │   ├── !cons_9x.bat
│   │   │   ├── !cons_nt.bat
│   │   │   ├── Makefile
│   │   │   ├── color2.c
│   │   │   ├── color2.hrb
│   │   │   └── make.bat
│   │   ├── cpuid
│   │   │   ├── !cons_9x.bat
│   │   │   ├── !cons_nt.bat
│   │   │   ├── Makefile
│   │   │   ├── app_make.txt
│   │   │   ├── asm.h
│   │   │   ├── asm.nas
│   │   │   ├── cpuid.c
│   │   │   ├── cpuid.hrb
│   │   │   └── make.bat
│   │   ├── euc.txt
│   │   ├── gview
│   │   │   ├── !cons_9x.bat
│   │   │   ├── !cons_nt.bat
│   │   │   ├── Makefile
│   │   │   ├── bmp.nasm
│   │   │   ├── bmp.obj
│   │   │   ├── gview.c
│   │   │   ├── gview.hrb
│   │   │   ├── jpeg.c
│   │   │   └── make.bat
│   │   ├── hariapp
│   │   │   ├── a.hrb
│   │   │   ├── beepdown.hrb
│   │   │   ├── calc.hrb
│   │   │   ├── chklang.hrb
│   │   │   ├── hello3.hrb
│   │   │   ├── hello4.hrb
│   │   │   ├── hello5.hrb
│   │   │   ├── iroha.hrb
│   │   │   ├── sosu.hrb
│   │   │   ├── sosu2.hrb
│   │   │   └── type.hrb
│   │   ├── haribote
│   │   │   ├── !cons_9x.bat
│   │   │   ├── !cons_nt.bat
│   │   │   ├── Makefile
│   │   │   ├── asmhead.nas
│   │   │   ├── bootpack.c
│   │   │   ├── bootpack.h
│   │   │   ├── console.c
│   │   │   ├── dsctbl.c
│   │   │   ├── fifo.c
│   │   │   ├── file.c
│   │   │   ├── graphic.c
│   │   │   ├── hankaku.txt
│   │   │   ├── haribote.sys
│   │   │   ├── int.c
│   │   │   ├── ipl20.bin
│   │   │   ├── ipl20.nas
│   │   │   ├── jpeg.c
│   │   │   ├── keyboard.c
│   │   │   ├── make.bat
│   │   │   ├── memory.c
│   │   │   ├── mouse.c
│   │   │   ├── mtask.c
│   │   │   ├── naskfunc.nas
│   │   │   ├── sheet.c
│   │   │   ├── tek.c
│   │   │   ├── timer.c
│   │   │   └── window.c
│   │   ├── haribote.rul
│   │   ├── invader
│   │   │   ├── !cons_9x.bat
│   │   │   ├── !cons_nt.bat
│   │   │   ├── Makefile
│   │   │   ├── invader.c
│   │   │   ├── invader.hrb
│   │   │   └── make.bat
│   │   ├── ipl20.nas
│   │   ├── lines
│   │   │   ├── !cons_9x.bat
│   │   │   ├── !cons_nt.bat
│   │   │   ├── Makefile
│   │   │   ├── lines.c
│   │   │   ├── lines.hrb
│   │   │   └── make.bat
│   │   ├── make.bat
│   │   ├── mmldata
│   │   │   ├── daigo.mml
│   │   │   ├── daigo.org
│   │   │   ├── daiku.mml
│   │   │   ├── daiku.org
│   │   │   ├── fujisan.mml
│   │   │   ├── fujisan.org
│   │   │   ├── kirakira.mml
│   │   │   └── kirakira.org
│   │   ├── mmlplay
│   │   │   ├── !cons_9x.bat
│   │   │   ├── !cons_nt.bat
│   │   │   ├── Makefile
│   │   │   ├── make.bat
│   │   │   ├── mmlplay.c
│   │   │   └── mmlplay.hrb
│   │   ├── nihongo
│   │   │   ├── nihongo.fnt
│   │   │   └── nihongo.org
│   │   ├── noodle
│   │   │   ├── !cons_9x.bat
│   │   │   ├── !cons_nt.bat
│   │   │   ├── Makefile
│   │   │   ├── make.bat
│   │   │   ├── noodle.c
│   │   │   └── noodle.hrb
│   │   ├── notrec
│   │   │   ├── !cons_9x.bat
│   │   │   ├── !cons_nt.bat
│   │   │   ├── Makefile
│   │   │   ├── make.bat
│   │   │   ├── notrec.c
│   │   │   └── notrec.hrb
│   │   ├── pictdata
│   │   │   ├── fujisan.jpg
│   │   │   ├── fujisan_.jpg
│   │   │   ├── night.bmp
│   │   │   ├── night_.bmp
│   │   │   ├── rapuos.bmp
│   │   │   ├── rapuos_.bmp
│   │   │   ├── rapuwp.jpg
│   │   │   ├── rapuwp_.jpg
│   │   │   ├── vclock.bmp
│   │   │   └── vclock_.bmp
│   │   ├── puzzle
│   │   │   ├── Makefile
│   │   │   ├── bmp.obj
│   │   │   ├── jpeg.c
│   │   │   ├── make.bat
│   │   │   ├── puzzle.c
│   │   │   └── puzzle.hrb
│   │   ├── rapuos.bhs
│   │   ├── rapuos.txt
│   │   ├── sosu3
│   │   │   ├── !cons_9x.bat
│   │   │   ├── !cons_nt.bat
│   │   │   ├── Makefile
│   │   │   ├── make.bat
│   │   │   ├── sosu3.c
│   │   │   └── sosu3.hrb
│   │   ├── star1
│   │   │   ├── !cons_9x.bat
│   │   │   ├── !cons_nt.bat
│   │   │   ├── Makefile
│   │   │   ├── make.bat
│   │   │   ├── star1.c
│   │   │   └── star1.hrb
│   │   ├── stars
│   │   │   ├── !cons_9x.bat
│   │   │   ├── !cons_nt.bat
│   │   │   ├── Makefile
│   │   │   ├── make.bat
│   │   │   ├── stars.c
│   │   │   └── stars.hrb
│   │   ├── stars2
│   │   │   ├── !cons_9x.bat
│   │   │   ├── !cons_nt.bat
│   │   │   ├── Makefile
│   │   │   ├── make.bat
│   │   │   ├── stars2.c
│   │   │   └── stars2.hrb
│   │   ├── tview
│   │   │   ├── !cons_9x.bat
│   │   │   ├── !cons_nt.bat
│   │   │   ├── Makefile
│   │   │   ├── make.bat
│   │   │   ├── tview.c
│   │   │   └── tview.hrb
│   │   ├── vclock
│   │   │   ├── !cons_9x.bat
│   │   │   ├── !cons_nt.bat
│   │   │   ├── Makefile
│   │   │   ├── bmp.obj
│   │   │   ├── make.bat
│   │   │   ├── vclock.c
│   │   │   └── vclock.hrb
│   │   ├── walk
│   │   │   ├── !cons_9x.bat
│   │   │   ├── !cons_nt.bat
│   │   │   ├── Makefile
│   │   │   ├── make.bat
│   │   │   ├── walk.c
│   │   │   └── walk.hrb
│   │   ├── winhelo
│   │   │   ├── !cons_9x.bat
│   │   │   ├── !cons_nt.bat
│   │   │   ├── Makefile
│   │   │   ├── make.bat
│   │   │   ├── winhelo.c
│   │   │   └── winhelo.hrb
│   │   ├── winhelo2
│   │   │   ├── !cons_9x.bat
│   │   │   ├── !cons_nt.bat
│   │   │   ├── Makefile
│   │   │   ├── make.bat
│   │   │   ├── winhelo2.c
│   │   │   └── winhelo2.hrb
│   │   └── winhelo3
│   │       ├── !cons_9x.bat
│   │       ├── !cons_nt.bat
│   │       ├── Makefile
│   │       ├── make.bat
│   │       ├── winhelo3.c
│   │       └── winhelo3.hrb
│   └── seriboteOS
│       ├── !cons_9x.bat
│       ├── !cons_nt.bat
│       ├── Makefile
│       ├── a
│       │   ├── !cons_9x.bat
│       │   ├── !cons_nt.bat
│       │   ├── Makefile
│       │   ├── a.c
│       │   ├── a.hrb
│       │   └── make.bat
│       ├── apilib
│       │   ├── !cons_9x.bat
│       │   ├── !cons_nt.bat
│       │   ├── Makefile
│       │   ├── alloca.nas
│       │   ├── api001.nas
│       │   ├── api002.nas
│       │   ├── api003.nas
│       │   ├── api004.nas
│       │   ├── api005.nas
│       │   ├── api006.nas
│       │   ├── api007.nas
│       │   ├── api008.nas
│       │   ├── api009.nas
│       │   ├── api010.nas
│       │   ├── api011.nas
│       │   ├── api012.nas
│       │   ├── api013.nas
│       │   ├── api014.nas
│       │   ├── api015.nas
│       │   ├── api016.nas
│       │   ├── api017.nas
│       │   ├── api018.nas
│       │   ├── api019.nas
│       │   ├── api020.nas
│       │   ├── api021.nas
│       │   ├── api022.nas
│       │   ├── api023.nas
│       │   ├── api024.nas
│       │   ├── api025.nas
│       │   ├── api026.nas
│       │   ├── api027.nas
│       │   ├── api028.nas
│       │   ├── api029.nas
│       │   ├── api030.nas
│       │   ├── api031.nas
│       │   ├── apilib.lib
│       │   └── make.bat
│       ├── apilib.h
│       ├── app_make.txt
│       ├── bball
│       │   ├── !cons_9x.bat
│       │   ├── !cons_nt.bat
│       │   ├── Makefile
│       │   ├── bball.c
│       │   ├── bball.hrb
│       │   └── make.bat
│       ├── beepdown
│       │   ├── !cons_9x.bat
│       │   ├── !cons_nt.bat
│       │   ├── Makefile
│       │   ├── beepdown.c
│       │   ├── beepdown.hrb
│       │   └── make.bat
│       ├── calc
│       │   ├── !cons_9x.bat
│       │   ├── !cons_nt.bat
│       │   ├── Makefile
│       │   ├── calc.c
│       │   ├── calc.hrb
│       │   └── make.bat
│       ├── chklang
│       │   ├── !cons_9x.bat
│       │   ├── !cons_nt.bat
│       │   ├── Makefile
│       │   ├── chklang.c
│       │   ├── chklang.hrb
│       │   └── make.bat
│       ├── color
│       │   ├── !cons_9x.bat
│       │   ├── !cons_nt.bat
│       │   ├── Makefile
│       │   ├── color.c
│       │   ├── color.hrb
│       │   └── make.bat
│       ├── color2
│       │   ├── !cons_9x.bat
│       │   ├── !cons_nt.bat
│       │   ├── Makefile
│       │   ├── color2.c
│       │   ├── color2.hrb
│       │   └── make.bat
│       ├── euc.txt
│       ├── gview
│       │   ├── !cons_9x.bat
│       │   ├── !cons_nt.bat
│       │   ├── Makefile
│       │   ├── bmp.nasm
│       │   ├── bmp.obj
│       │   ├── gview.c
│       │   ├── gview.hrb
│       │   ├── jpeg.c
│       │   └── make.bat
│       ├── haribote
│       │   ├── !cons_9x.bat
│       │   ├── !cons_nt.bat
│       │   ├── Makefile
│       │   ├── _ipl09.nas
│       │   ├── asmhead.bin
│       │   ├── asmhead.lst
│       │   ├── asmhead.nas
│       │   ├── bootpack.bim
│       │   ├── bootpack.c
│       │   ├── bootpack.h
│       │   ├── bootpack.hrb
│       │   ├── bootpack.lst
│       │   ├── bootpack.map
│       │   ├── bootpack.obj
│       │   ├── console.c
│       │   ├── console.lst
│       │   ├── console.obj
│       │   ├── dsctbl.c
│       │   ├── dsctbl.lst
│       │   ├── dsctbl.obj
│       │   ├── fifo.c
│       │   ├── fifo.lst
│       │   ├── fifo.obj
│       │   ├── file.c
│       │   ├── file.lst
│       │   ├── file.obj
│       │   ├── graphic.c
│       │   ├── graphic.lst
│       │   ├── graphic.obj
│       │   ├── hankaku.bin
│       │   ├── hankaku.obj
│       │   ├── hankaku.txt
│       │   ├── haribote.sys
│       │   ├── int.c
│       │   ├── int.lst
│       │   ├── int.obj
│       │   ├── ipl09.bin
│       │   ├── ipl09.nas
│       │   ├── keyboard.c
│       │   ├── keyboard.lst
│       │   ├── keyboard.obj
│       │   ├── lines.c
│       │   ├── make.bat
│       │   ├── memory.c
│       │   ├── memory.lst
│       │   ├── memory.obj
│       │   ├── mouse.c
│       │   ├── mouse.lst
│       │   ├── mouse.obj
│       │   ├── mtask.c
│       │   ├── mtask.lst
│       │   ├── mtask.obj
│       │   ├── naskfunc.lst
│       │   ├── naskfunc.nas
│       │   ├── naskfunc.obj
│       │   ├── noodle.c
│       │   ├── serial.c
│       │   ├── serial.lst
│       │   ├── serial.obj
│       │   ├── sheet.c
│       │   ├── sheet.lst
│       │   ├── sheet.obj
│       │   ├── tek.c
│       │   ├── tek.lst
│       │   ├── tek.obj
│       │   ├── timer.c
│       │   ├── timer.lst
│       │   ├── timer.obj
│       │   ├── window.c
│       │   ├── window.lst
│       │   └── window.obj
│       ├── haribote.rul
│       ├── hello3
│       │   ├── !cons_9x.bat
│       │   ├── !cons_nt.bat
│       │   ├── Makefile
│       │   ├── hello3.c
│       │   ├── hello3.hrb
│       │   └── make.bat
│       ├── hello4
│       │   ├── !cons_9x.bat
│       │   ├── !cons_nt.bat
│       │   ├── Makefile
│       │   ├── hello4.c
│       │   ├── hello4.hrb
│       │   └── make.bat
│       ├── hello5
│       │   ├── !cons_9x.bat
│       │   ├── !cons_nt.bat
│       │   ├── Makefile
│       │   ├── hello5.hrb
│       │   ├── hello5.nas
│       │   └── make.bat
│       ├── invader
│       │   ├── !cons_9x.bat
│       │   ├── !cons_nt.bat
│       │   ├── Makefile
│       │   ├── invader.c
│       │   ├── invader.hrb
│       │   └── make.bat
│       ├── ipl09.nas
│       ├── iroha
│       │   ├── !cons_9x.bat
│       │   ├── !cons_nt.bat
│       │   ├── Makefile
│       │   ├── iroha.c
│       │   ├── iroha.hrb
│       │   └── make.bat
│       ├── lines
│       │   ├── !cons_9x.bat
│       │   ├── !cons_nt.bat
│       │   ├── Makefile
│       │   ├── lines.c
│       │   ├── lines.hrb
│       │   └── make.bat
│       ├── make.bat
│       ├── mmldata
│       │   ├── daigo.mml
│       │   ├── daigo.org
│       │   ├── daiku.mml
│       │   ├── daiku.org
│       │   ├── fujisan.mml
│       │   ├── fujisan.org
│       │   ├── kirakira.mml
│       │   └── kirakira.org
│       ├── mmlplay
│       │   ├── !cons_9x.bat
│       │   ├── !cons_nt.bat
│       │   ├── Makefile
│       │   ├── make.bat
│       │   ├── mmlplay.c
│       │   └── mmlplay.hrb
│       ├── nihongo
│       │   ├── jpn16v00.bin
│       │   ├── jpn16v00.fnt
│       │   ├── nihongo.fnt
│       │   └── nihongo.org
│       ├── noodle
│       │   ├── !cons_9x.bat
│       │   ├── !cons_nt.bat
│       │   ├── Makefile
│       │   ├── make.bat
│       │   ├── noodle.c
│       │   └── noodle.hrb
│       ├── notrec
│       │   ├── !cons_9x.bat
│       │   ├── !cons_nt.bat
│       │   ├── Makefile
│       │   ├── make.bat
│       │   ├── notrec.c
│       │   └── notrec.hrb
│       ├── pictdata
│       │   ├── fujisan.jpg
│       │   ├── fujisan_.jpg
│       │   ├── night.bmp
│       │   └── night_.bmp
│       ├── rs232_1
│       │   ├── !cons_9x.bat
│       │   ├── !cons_nt.bat
│       │   ├── Makefile
│       │   ├── make.bat
│       │   ├── rs232_1.c
│       │   └── rs232_1.hrb
│       ├── rs232_2
│       │   ├── !cons_9x.bat
│       │   ├── !cons_nt.bat
│       │   ├── Makefile
│       │   ├── make.bat
│       │   ├── rs232_2.c
│       │   └── rs232_2.hrb
│       ├── rs232_3
│       │   ├── !cons_9x.bat
│       │   ├── !cons_nt.bat
│       │   ├── Makefile
│       │   ├── font1.fnt
│       │   ├── font1.txt
│       │   ├── font2.fnt
│       │   ├── font2.txt
│       │   ├── make.bat
│       │   ├── rs232_3.c
│       │   └── rs232_3.hrb
│       ├── sosu
│       │   ├── !cons_9x.bat
│       │   ├── !cons_nt.bat
│       │   ├── Makefile
│       │   ├── make.bat
│       │   ├── sosu.c
│       │   └── sosu.hrb
│       ├── sosu2
│       │   ├── !cons_9x.bat
│       │   ├── !cons_nt.bat
│       │   ├── Makefile
│       │   ├── make.bat
│       │   ├── sosu2.c
│       │   ├── sosu2.gas
│       │   ├── sosu2.hrb
│       │   └── sosu2.nas
│       ├── sosu3
│       │   ├── !cons_9x.bat
│       │   ├── !cons_nt.bat
│       │   ├── Makefile
│       │   ├── make.bat
│       │   ├── sosu3.c
│       │   └── sosu3.hrb
│       ├── star1
│       │   ├── !cons_9x.bat
│       │   ├── !cons_nt.bat
│       │   ├── Makefile
│       │   ├── make.bat
│       │   ├── star1.c
│       │   └── star1.hrb
│       ├── stars
│       │   ├── !cons_9x.bat
│       │   ├── !cons_nt.bat
│       │   ├── Makefile
│       │   ├── make.bat
│       │   ├── stars.c
│       │   └── stars.hrb
│       ├── stars2
│       │   ├── !cons_9x.bat
│       │   ├── !cons_nt.bat
│       │   ├── Makefile
│       │   ├── make.bat
│       │   ├── stars2.c
│       │   └── stars2.hrb
│       ├── tek
│       │   ├── autodec_.c
│       │   └── tek.c
│       ├── tview
│       │   ├── !cons_9x.bat
│       │   ├── !cons_nt.bat
│       │   ├── Makefile
│       │   ├── make.bat
│       │   ├── tview.c
│       │   └── tview.hrb
│       ├── type
│       │   ├── !cons_9x.bat
│       │   ├── !cons_nt.bat
│       │   ├── Makefile
│       │   ├── make.bat
│       │   ├── type.c
│       │   └── type.hrb
│       ├── walk
│       │   ├── !cons_9x.bat
│       │   ├── !cons_nt.bat
│       │   ├── Makefile
│       │   ├── make.bat
│       │   ├── walk.c
│       │   └── walk.hrb
│       ├── winhelo
│       │   ├── !cons_9x.bat
│       │   ├── !cons_nt.bat
│       │   ├── Makefile
│       │   ├── make.bat
│       │   ├── winhelo.c
│       │   └── winhelo.hrb
│       ├── winhelo2
│       │   ├── !cons_9x.bat
│       │   ├── !cons_nt.bat
│       │   ├── Makefile
│       │   ├── make.bat
│       │   ├── winhelo2.c
│       │   └── winhelo2.hrb
│       └── winhelo3
│           ├── !cons_9x.bat
│           ├── !cons_nt.bat
│           ├── Makefile
│           ├── make.bat
│           ├── winhelo3.c
│           └── winhelo3.hrb
├── qemu
│   ├── 9x
│   │   ├── Makefile
│   │   ├── SDL.dll
│   │   ├── bios.bin
│   │   ├── qemu.exe
│   │   └── vgabios.bin
│   ├── nt
│   │   ├── License
│   │   │   ├── LICENSE
│   │   │   ├── README-SDL.txt
│   │   │   └── README.TXT
│   │   ├── Makefile
│   │   ├── README-en.txt
│   │   ├── README-ja.txt
│   │   ├── SDL.dll
│   │   ├── bios.bin
│   │   ├── fmod.dll
│   │   ├── keymaps
│   │   │   ├── ar
│   │   │   ├── common
│   │   │   ├── da
│   │   │   ├── de
│   │   │   ├── de-ch
│   │   │   ├── en-gb
│   │   │   ├── en-us
│   │   │   ├── es
│   │   │   ├── et
│   │   │   ├── fi
│   │   │   ├── fo
│   │   │   ├── fr
│   │   │   ├── fr-be
│   │   │   ├── fr-ca
│   │   │   ├── fr-ch
│   │   │   ├── hr
│   │   │   ├── hu
│   │   │   ├── is
│   │   │   ├── it
│   │   │   ├── ja
│   │   │   ├── lt
│   │   │   ├── lv
│   │   │   ├── mk
│   │   │   ├── modifiers
│   │   │   ├── nl
│   │   │   ├── nl-be
│   │   │   ├── no
│   │   │   ├── pl
│   │   │   ├── pt
│   │   │   ├── pt-br
│   │   │   ├── ru
│   │   │   ├── sl
│   │   │   ├── sv
│   │   │   ├── th
│   │   │   └── tr
│   │   ├── linux_boot.bin
│   │   ├── qemu-doc.html
│   │   ├── qemu-img.exe
│   │   ├── qemu-system-x86_64.exe
│   │   ├── qemu-tech.html
│   │   ├── qemu-win.bat
│   │   ├── qemu-x86_64.bat
│   │   ├── qemu.exe
│   │   ├── vgabios-cirrus.bin
│   │   └── vgabios.bin
│   └── serial
│       ├── License
│       │   ├── LICENSE
│       │   └── README-SDL.txt
│       ├── README-en.txt
│       ├── README-ja.txt
│       ├── SDL.dll
│       ├── bios.bin
│       ├── linux_boot.bin
│       ├── qemu-doc.html
│       ├── qemu-img.exe
│       ├── qemu-system-x86_64.exe
│       ├── qemu-tech.html
│       ├── qemu-win.bat
│       ├── qemu-x86_64.bat
│       ├── qemu.exe
│       ├── vgabios-cirrus.bin
│       └── vgabios.bin
├── tolset
│   ├── GPL.txt
│   ├── LGPL.txt
│   ├── license.txt
│   ├── readme.txt
│   ├── z_hrbapp
│   │   ├── !cons_9x.bat
│   │   ├── !cons_nt.bat
│   │   ├── !run_opt.txt
│   │   └── run.bat
│   ├── z_new_h
│   │   ├── !cons_9x.bat
│   │   ├── !cons_nt.bat
│   │   ├── Makefile
│   │   └── make.bat
│   ├── z_new_o
│   │   ├── !cons_9x.bat
│   │   ├── !cons_nt.bat
│   │   ├── Makefile
│   │   └── make.bat
│   ├── z_new_w
│   │   ├── !cons_9x.bat
│   │   ├── !cons_nt.bat
│   │   ├── Makefile
│   │   └── make.bat
│   ├── z_osabin
│   │   ├── !cons_9x.bat
│   │   ├── !cons_nt.bat
│   │   ├── !run_opt.txt
│   │   └── run.bat
│   └── z_tools
│       ├── OSASK0.PSF
│       ├── aksa.exe
│       ├── as.exe
│       ├── aska.exe
│       ├── bim2bin.exe
│       ├── bim2hrb.exe
│       ├── bin2obj.exe
│       ├── c .exe
│       ├── cc1.exe
│       ├── cc1plus.exe
│       ├── com_mak.txt
│       ├── comcom.exe
│       ├── cpp0.exe
│       ├── dsar.bat
│       ├── edimg.exe
│       ├── edimgopt.txt
│       ├── esart5.bat
│       ├── fdimg0at.tek
│       ├── fdimg0tw.tek
│       ├── gas2nask.exe
│       ├── golib00.exe
│       ├── guigui00
│       │   ├── errno.h
│       │   ├── float.h
│       │   ├── gg00libc.lib
│       │   ├── gg00old0.rul
│       │   ├── golibc.lib
│       │   ├── guigui00.h
│       │   ├── guigui00.rul
│       │   ├── limits.h
│       │   ├── math.h
│       │   ├── setjmp.h
│       │   ├── stdarg.h
│       │   ├── stddef.h
│       │   ├── stdio.h
│       │   ├── stdlib.h
│       │   └── string.h
│       ├── haribote
│       │   ├── apilib.h
│       │   ├── apilib.lib
│       │   ├── errno.h
│       │   ├── float.h
│       │   ├── golibc.lib
│       │   ├── haribote.rul
│       │   ├── harilibc.lib
│       │   ├── limits.h
│       │   ├── math.h
│       │   ├── setjmp.h
│       │   ├── stdarg.h
│       │   ├── stddef.h
│       │   ├── stdio.h
│       │   └── string.h
│       ├── hrb_mak.txt
│       ├── hrb_qemu
│       │   └── haribote.img
│       ├── imgtol.com
│       ├── ld.exe
│       ├── make.exe
│       ├── makefont.exe
│       ├── nask.exe
│       ├── naskcnv0.exe
│       ├── nothing.com
│       ├── obj2bim.exe
│       ├── osa_qemu
│       │   ├── Makefile
│       │   ├── OSAIMGAT.BIN
│       │   ├── OSASK.EXE
│       │   ├── OSASK0.PSF
│       │   ├── edimgopt.txt
│       │   ├── manual.bat
│       │   ├── osalink1.opt
│       │   └── timerdrv.tek
│       ├── osalink1.exe
│       ├── qemu
│       │   ├── Makefile
│       │   ├── SDL.dll
│       │   ├── bios.bin
│       │   ├── qemu-win.bat
│       │   ├── qemu.exe
│       │   └── vgabios.bin
│       ├── qemu_9x
│       │   ├── Makefile
│       │   ├── SDL.dll
│       │   ├── bios.bin
│       │   ├── qemu.exe
│       │   └── vgabios.bin
│       ├── sartol.exe
│       ├── sjisconv.exe
│       ├── t5lzma.exe
│       ├── upx.exe
│       ├── wce.exe
│       └── win32
│           ├── errno.h
│           ├── float.h
│           ├── golibc.lib
│           ├── libmingw.lib
│           ├── limits.h
│           ├── math.h
│           ├── setjmp.h
│           ├── stdarg.h
│           ├── stddef.h
│           ├── stdio.h
│           ├── stdlib.h
│           ├── string.h
│           └── w32clibc.lib
└── 好例子网_30 天自制操作系统 书附光盘.iso

154 directories, 1254 files



实例下载地址

《30天自制操作系统》 书附光盘

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警