├── Autorun.inf ├── boot.catalog ├── haribote.img ├── omake ├── heboos │ ├── heboos │ │ ├── charfont.bin │ │ ├── charfont.txt │ │ ├── fdimage.bin │ │ ├── graphic.hoa │ │ ├── graphic.nas │ │ ├── hello.hoa │ │ ├── hello.nas │ │ ├── ipl.ask │ │ ├── makeipl.bat │ │ ├── makeos.bat │ │ ├── os.ask │ │ ├── os.com │ │ └── txt2bin.exe │ └── minifsos │ │ ├── fdimage.bin │ │ ├── ipl.bin │ │ ├── ipl.nas │ │ ├── os.com │ │ └── os.nas ├── license.txt ├── omake.txt ├── osask │ ├── make47 │ │ └── src47 │ │ │ ├── !cons_9x.bat │ │ │ ├── !cons_nt.bat │ │ │ ├── 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 │ │ │ ├── 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 │ ├── osat47cd │ │ ├── LICENSE.TXT │ │ └── OSAIMGCD.ISO │ ├── osat47i │ │ ├── IMGTOL.COM │ │ ├── INSTALL.BAT │ │ ├── LICENSE.TXT │ │ └── OSAIMGAT.BIN │ └── osat47uf │ │ ├── IMGTOL.COM │ │ ├── INSTALL.BAT │ │ ├── LICENSE.TXT │ │ └── OSAIMGUF.BIN ├── tolopt │ ├── bochs226 │ │ ├── Makefile │ │ ├── bios.bin │ │ ├── bochs-smp.exe │ │ ├── bochsrc.txt │ │ └── vgabios.bin │ └── fix_cygw │ │ ├── copy.exe │ │ ├── del.exe │ │ └── doscmd.exe └── tolsrc │ ├── aksa1a │ ├── !cons_9x.bat │ ├── !cons_nt.bat │ ├── Makefile │ ├── aksa.c │ ├── helloc4.org │ ├── make.bat │ └── memo.txt │ ├── aska │ ├── aska │ ├── history │ ├── readme │ └── src │ │ ├── Makefile │ │ ├── aska_en.dsp │ │ ├── aska_en.dsw │ │ ├── filepath.cpp │ │ ├── filepath.h │ │ ├── generator.cpp │ │ ├── generator.h │ │ ├── macro.h │ │ ├── main.cpp │ │ ├── makefile-mingw │ │ ├── makefile.gcc │ │ ├── mkmgw11.bat │ │ ├── mkmgw20.bat │ │ ├── module.cpp │ │ ├── module.h │ │ ├── parser.cpp │ │ ├── parser.h │ │ ├── scanner.cpp │ │ ├── scanner.h │ │ ├── stringx.cpp │ │ ├── stringx.h │ │ ├── table.cpp │ │ ├── table.h │ │ ├── textmodule.cpp │ │ ├── textmodule.h │ │ └── tokendef.h │ ├── bim2bi4w │ ├── !cons_9x.bat │ ├── !cons_nt.bat │ ├── Makefile │ ├── bim2bin.c │ ├── dtk1s0c │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── dtk1s.c │ │ ├── make.bat │ │ ├── tstdstk1.c │ │ └── tstdstk1.exe │ ├── dtk1s0s │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── dtk1s.ask │ │ ├── dtk1s.obj │ │ ├── make.bat │ │ ├── tstdstk1.c │ │ └── tstdstk1.exe │ ├── dtk2s0f │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── dtk2s.c │ │ ├── make.bat │ │ ├── tstdstk2.c │ │ └── tstdstk2.exe │ ├── dtk2s0r │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── dtk2s.ask │ │ ├── dtk2s.obj │ │ ├── make.bat │ │ ├── tstdstk2.c │ │ └── tstdstk2.exe │ ├── dtk5f0d │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── dtk5f.c │ │ ├── make.bat │ │ ├── tstdtek5.c │ │ └── tstdtek5.exe │ ├── dtk5f0r │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── dtk5f.ask │ │ ├── dtk5f.obj │ │ ├── make.bat │ │ ├── tstdtek5.c │ │ └── tstdtek5.exe │ ├── dtk5s0d │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── dtk5s.c │ │ ├── make.bat │ │ ├── tstdstk5.c │ │ └── tstdstk5.exe │ ├── dtk5s0r │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── dtk5s.ask │ │ ├── dtk5s.obj │ │ ├── make.bat │ │ ├── tstdstk5.c │ │ └── tstdstk5.exe │ ├── dtk_doc.txt │ ├── make.bat │ └── t5lzma_p.txt │ ├── bim2hrb │ ├── !cons_9x.bat │ ├── !cons_nt.bat │ ├── Makefile │ ├── bim2hrb.c │ └── make.bat │ ├── bin2obj0 │ ├── !cons_9x.bat │ ├── !cons_nt.bat │ ├── Makefile │ ├── bin2obj.c │ └── make.bat │ ├── doscmd0a │ ├── !cons_9x.bat │ ├── !cons_nt.bat │ ├── Makefile │ ├── doscmd.c │ ├── make.bat │ └── windows.h │ ├── edimg0j │ ├── !cons.bat │ ├── Makefile │ ├── autodec.ask │ ├── autodec.obj │ ├── autodec_.c │ ├── document.txt │ ├── edimg.c │ ├── fdimg0at.tek │ ├── fdimg0tw.tek │ ├── make.bat │ ├── sargow32.lib │ └── sf16_40s.tek │ ├── go_0023s │ ├── COPYING │ ├── Makefile │ ├── config │ │ ├── bsd.h │ │ ├── cygming.h │ │ ├── cygwin.h │ │ ├── dbxcoff.h │ │ ├── gas.h │ │ ├── i386-protos.h │ │ ├── i386.h │ │ ├── unix.h │ │ └── xm-cygwin.h │ ├── cp │ │ ├── Makefile │ │ ├── call.c │ │ ├── cfns.h │ │ ├── class.c │ │ ├── cp-lang.c │ │ ├── cp-tree.def │ │ ├── cp-tree.h │ │ ├── cvt.c │ │ ├── decl.c │ │ ├── decl.h │ │ ├── decl2.c │ │ ├── dump.c │ │ ├── error.c │ │ ├── except.c │ │ ├── expr.c │ │ ├── friend.c │ │ ├── init.c │ │ ├── lang-options.h │ │ ├── lex.c │ │ ├── lex.h │ │ ├── mangle.c │ │ ├── method.c │ │ ├── operators.def │ │ ├── optimize.c │ │ ├── parse.c │ │ ├── parse.h │ │ ├── pt.c │ │ ├── ptree.c │ │ ├── repo.c │ │ ├── rtti.c │ │ ├── search.c │ │ ├── semantics.c │ │ ├── spew.c │ │ ├── tree.c │ │ ├── typeck.c │ │ └── typeck2.c │ ├── drv_osa │ │ ├── Makefile │ │ ├── bim2bin.c │ │ ├── cc1main.c │ │ ├── cmdline.c │ │ ├── gas2nask.c │ │ ├── guigui00.h │ │ ├── naskmain.c │ │ ├── obj2bim.c │ │ ├── osamain.c │ │ ├── others.h │ │ ├── refresh.ask │ │ ├── sjisconv.c │ │ └── stdlib.h │ ├── drv_stdc │ │ ├── Makefile │ │ ├── cc1drv.c │ │ ├── cc1main.c │ │ ├── cc1pmain.c │ │ ├── cpp0main.c │ │ ├── drv_stdc.c │ │ ├── msgout_c.c │ │ ├── others.c │ │ ├── others.h │ │ ├── wfile_b.c │ │ └── wfile_t.c │ ├── drv_w32 │ │ ├── Makefile │ │ ├── cc1drv.c │ │ ├── cc1main.c │ │ ├── cc1pmain.c │ │ ├── cpp0main.c │ │ ├── drv_w32.c │ │ ├── msgout_c.c │ │ ├── others.c │ │ ├── others.h │ │ ├── wfile_b.c │ │ └── windows.h │ ├── funcs │ │ ├── cc1sub.c │ │ ├── gostrlen.c │ │ ├── m_gasnas.c │ │ ├── m_golib.c │ │ ├── m_naskcv.c │ │ ├── m_sjiscv.c │ │ ├── msgout.c │ │ └── nasksub.c │ ├── gcc │ │ ├── Makefile │ │ ├── alias.c │ │ ├── attribs.c │ │ ├── auto-host.h │ │ ├── basic-block.h │ │ ├── bb-reorder.c │ │ ├── bitmap.c │ │ ├── bitmap.h │ │ ├── builtin-attrs.def │ │ ├── builtin-types.def │ │ ├── builtins.c │ │ ├── builtins.def │ │ ├── c-aux-info.c │ │ ├── c-common.c │ │ ├── c-common.def │ │ ├── c-common.h │ │ ├── c-convert.c │ │ ├── c-decl.c │ │ ├── c-errors.c │ │ ├── c-format.c │ │ ├── c-lang.c │ │ ├── c-lex.c │ │ ├── c-lex.h │ │ ├── c-objc-common.c │ │ ├── c-parse.c │ │ ├── c-pragma.c │ │ ├── c-pragma.h │ │ ├── c-semantics.c │ │ ├── c-tree.h │ │ ├── c-typeck.c │ │ ├── caller-save.c │ │ ├── calls.c │ │ ├── cfg.c │ │ ├── cfganal.c │ │ ├── cfgbuild.c │ │ ├── cfgcleanup.c │ │ ├── cfglayout.c │ │ ├── cfglayout.h │ │ ├── cfgloop.c │ │ ├── cfgrtl.c │ │ ├── combine.c │ │ ├── conditions.h │ │ ├── config.h │ │ ├── conflict.c │ │ ├── convert.c │ │ ├── convert.h │ │ ├── cppdefault.c │ │ ├── cppdefault.h │ │ ├── cpperror.c │ │ ├── cppexp.c │ │ ├── cppfiles.c │ │ ├── cpphash.c │ │ ├── cpphash.h │ │ ├── cppinit.c │ │ ├── cpplex.c │ │ ├── cpplib.c │ │ ├── cpplib.h │ │ ├── cppmacro.c │ │ ├── cppmain.c │ │ ├── cppmain.n │ │ ├── cse.c │ │ ├── cselib.c │ │ ├── cselib.h │ │ ├── dbxout.c │ │ ├── dbxout.h │ │ ├── debug.c │ │ ├── debug.h │ │ ├── defaults.h │ │ ├── dependence.c │ │ ├── df.c │ │ ├── df.h │ │ ├── diagnostic.c │ │ ├── diagnostic.def │ │ ├── diagnostic.h │ │ ├── doloop.c │ │ ├── dominance.c │ │ ├── dwarf.h │ │ ├── dwarf2.h │ │ ├── dwarf2asm.c │ │ ├── dwarf2asm.h │ │ ├── dwarf2out.c │ │ ├── dwarf2out.h │ │ ├── dwarfout.c │ │ ├── emit-rtl.c │ │ ├── errors.h │ │ ├── except.c │ │ ├── except.h │ │ ├── explow.c │ │ ├── expmed.c │ │ ├── expr.c │ │ ├── expr.h │ │ ├── final.c │ │ ├── flags.h │ │ ├── flow.c │ │ ├── fold-const.c │ │ ├── function.c │ │ ├── function.h │ │ ├── gcov-io.h │ │ ├── gcse.c │ │ ├── genrtl.c │ │ ├── genrtl.h │ │ ├── ggc-common.c │ │ ├── ggc-page.c │ │ ├── ggc.h │ │ ├── global.c │ │ ├── graph.c │ │ ├── graph.h │ │ ├── gstab.h │ │ ├── gsyms.h │ │ ├── haifa-sched.c │ │ ├── halfpic.h │ │ ├── hard-reg-set.h │ │ ├── hash.c │ │ ├── hash.h │ │ ├── hashtable.c │ │ ├── hashtable.h │ │ ├── hooks.c │ │ ├── hooks.h │ │ ├── hwint.h │ │ ├── i386.c │ │ ├── ifcvt.c │ │ ├── input.h │ │ ├── insn-addr.h │ │ ├── insn-attr.h │ │ ├── insn-attrtab.c │ │ ├── insn-codes.h │ │ ├── insn-config.h │ │ ├── insn-constants.h │ │ ├── insn-emit.c │ │ ├── insn-extract.c │ │ ├── insn-flags.h │ │ ├── insn-opinit.c │ │ ├── insn-output.c │ │ ├── insn-peep.c │ │ ├── insn-recog.c │ │ ├── integrate.c │ │ ├── integrate.h │ │ ├── intl.c │ │ ├── intl.h │ │ ├── jump.c │ │ ├── langhooks-def.h │ │ ├── langhooks.c │ │ ├── langhooks.h │ │ ├── lcm.c │ │ ├── libfuncs.h │ │ ├── line-map.c │ │ ├── line-map.h │ │ ├── lists.c │ │ ├── local-alloc.c │ │ ├── loop.c │ │ ├── loop.h │ │ ├── machmode.def │ │ ├── machmode.h │ │ ├── mbchar.c │ │ ├── mbchar.h │ │ ├── mkdeps.c │ │ ├── mkdeps.h │ │ ├── optabs.c │ │ ├── optabs.h │ │ ├── options.h │ │ ├── output.h │ │ ├── params.c │ │ ├── params.def │ │ ├── params.h │ │ ├── predict.c │ │ ├── predict.def │ │ ├── predict.h │ │ ├── prefix.c │ │ ├── prefix.h │ │ ├── print-rtl.c │ │ ├── print-tree.c │ │ ├── profile.c │ │ ├── real.c │ │ ├── real.h │ │ ├── recog.c │ │ ├── recog.h │ │ ├── reg-stack.c │ │ ├── regclass.c │ │ ├── regmove.c │ │ ├── regrename.c │ │ ├── regs.h │ │ ├── reload.c │ │ ├── reload.h │ │ ├── reload1.c │ │ ├── reorg.c │ │ ├── resource.c │ │ ├── resource.h │ │ ├── rtl-error.c │ │ ├── rtl.c │ │ ├── rtl.def │ │ ├── rtl.h │ │ ├── rtlanal.c │ │ ├── sbitmap.c │ │ ├── sbitmap.h │ │ ├── sched-deps.c │ │ ├── sched-ebb.c │ │ ├── sched-int.h │ │ ├── sched-rgn.c │ │ ├── sched-vis.c │ │ ├── sdbout.c │ │ ├── sdbout.h │ │ ├── sibcall.c │ │ ├── simplify-rtx.c │ │ ├── ssa-ccp.c │ │ ├── ssa-dce.c │ │ ├── ssa.c │ │ ├── ssa.h │ │ ├── stab.def │ │ ├── stack.h │ │ ├── stmt.c │ │ ├── stor-layout.c │ │ ├── stringpool.c │ │ ├── system.h │ │ ├── target-def.h │ │ ├── target.h │ │ ├── timevar.h │ │ ├── tm-preds.h │ │ ├── tm_p.h │ │ ├── toplev.c │ │ ├── toplev.h │ │ ├── tree-check.h │ │ ├── tree-dump.c │ │ ├── tree-dump.h │ │ ├── tree-inline.c │ │ ├── tree-inline.h │ │ ├── tree.c │ │ ├── tree.def │ │ ├── tree.h │ │ ├── typeclass.h │ │ ├── unroll.c │ │ ├── varasm.c │ │ ├── varray.c │ │ ├── varray.h │ │ ├── version.c │ │ ├── version.h │ │ ├── vmsdbg.h │ │ ├── vmsdbgout.c │ │ ├── winnt.c │ │ ├── xcoffout.c │ │ └── xcoffout.h │ ├── go_lib │ │ ├── Makefile │ │ ├── abort.c │ │ ├── abs.c │ │ ├── atof.c │ │ ├── atoi.c │ │ ├── calloc.c │ │ ├── dummy.c │ │ ├── errno.c │ │ ├── fclose.c │ │ ├── feof.c │ │ ├── fgetc.c │ │ ├── fgets.c │ │ ├── fopen.c │ │ ├── fprintf.c │ │ ├── fputc.c │ │ ├── fputs.c │ │ ├── fread.c │ │ ├── frexp.c │ │ ├── fseek.c │ │ ├── ftell.c │ │ ├── fwrite.c │ │ ├── ldexp.c │ │ ├── malloc.c │ │ ├── memchr.c │ │ ├── memcmp.c │ │ ├── memcpy.c │ │ ├── memmove.c │ │ ├── memset.c │ │ ├── mmmalloc.c │ │ ├── mmreallo.c │ │ ├── printf.c │ │ ├── qsort.c │ │ ├── rand.c │ │ ├── realloc.c │ │ ├── sprintf.c │ │ ├── stdin.c │ │ ├── strcat.c │ │ ├── strchr.c │ │ ├── strcmp.c │ │ ├── strcpy.c │ │ ├── strcspn.c │ │ ├── strdup.c │ │ ├── strlen.c │ │ ├── strncat.c │ │ ├── strncmp.c │ │ ├── strncpy.c │ │ ├── strpbrk.c │ │ ├── strrchr.c │ │ ├── strspn.c │ │ ├── strstr.c │ │ ├── strtol.c │ │ ├── strtoul.c │ │ ├── strtoul0.c │ │ ├── symalloc.c │ │ ├── ungetc.c │ │ ├── vfprintf.c │ │ └── vsprintf.c │ ├── golibc │ │ ├── Makefile │ │ ├── abs.c │ │ ├── atof.c │ │ ├── atoi.c │ │ ├── errno.c │ │ ├── errno.h │ │ ├── float.h │ │ ├── frexp.c │ │ ├── ldexp.c │ │ ├── limits.h │ │ ├── math.h │ │ ├── memchr.c │ │ ├── memcmp.c │ │ ├── memcpy.c │ │ ├── memmove.c │ │ ├── memset.c │ │ ├── qsort.c │ │ ├── rand.c_ │ │ ├── rand.nas │ │ ├── setjmp.h │ │ ├── sprintf.c │ │ ├── stdarg.h │ │ ├── stddef.h │ │ ├── stdio.h │ │ ├── stdlib.h │ │ ├── strcat.c │ │ ├── strchr.c │ │ ├── strcmp.c │ │ ├── strcpy.c │ │ ├── strcspn.c │ │ ├── strdup.c │ │ ├── string.h │ │ ├── strlen.c │ │ ├── strncat.c │ │ ├── strncmp.c │ │ ├── strncpy.c │ │ ├── strpbrk.c │ │ ├── strrchr.c │ │ ├── strspn.c │ │ ├── strstr.c │ │ ├── strtol.c │ │ ├── strtoul.c │ │ ├── strtoul0.c │ │ └── vsprintf.c │ ├── include │ │ ├── ansidecl.h │ │ ├── ctype.h │ │ ├── demangle.h │ │ ├── dyn-string.h │ │ ├── errno.h │ │ ├── fibheap.h │ │ ├── float.h │ │ ├── floatformat.h │ │ ├── fnmatch.h │ │ ├── gccdef.h │ │ ├── getopt.h │ │ ├── go_lib.h │ │ ├── hashtab.h │ │ ├── libiberty.h │ │ ├── limits.h │ │ ├── math.h │ │ ├── md5.h │ │ ├── objalloc.h │ │ ├── obstack.h │ │ ├── partition.h │ │ ├── rules.gcc │ │ ├── rules.go │ │ ├── rules.mak │ │ ├── safe-ctype.h │ │ ├── setjmp.h │ │ ├── sort.h │ │ ├── splay-tree.h │ │ ├── stdarg.h │ │ ├── stddef.h │ │ ├── stdio.h │ │ ├── stdlib.h │ │ ├── string.h │ │ ├── symcat.h │ │ ├── ternary.h │ │ ├── xregex.h │ │ └── xregex2.h │ ├── intl │ │ ├── Makefile │ │ ├── bindtextdom.c │ │ ├── dcgettext.c │ │ ├── dcigettext.c │ │ ├── dcngettext.c │ │ ├── dgettext.c │ │ ├── dngettext.c │ │ ├── explodename.c │ │ ├── finddomain.c │ │ ├── gettext.c │ │ ├── gettext.h │ │ ├── gettextP.h │ │ ├── hash-string.h │ │ ├── intl-compat.c │ │ ├── l10nflist.c │ │ ├── libgnuintl.h │ │ ├── loadinfo.h │ │ ├── loadmsgcat.c │ │ ├── localcharset.c │ │ ├── localealias.c │ │ ├── ngettext.c │ │ ├── plural.c │ │ └── textdomain.c │ ├── libiberty │ │ ├── Makefile │ │ ├── alloca.c │ │ ├── argv.c │ │ ├── asprintf.c │ │ ├── basename.c │ │ ├── choose-temp.c │ │ ├── concat.c │ │ ├── config.h │ │ ├── cp-demangle.c │ │ ├── cplus-dem.c │ │ ├── dyn-string.c │ │ ├── fdmatch.c │ │ ├── fibheap.c │ │ ├── floatformat.c │ │ ├── fnmatch.c │ │ ├── getopt.c │ │ ├── getopt1.c │ │ ├── getpwd.c │ │ ├── hashtab.c │ │ ├── hex.c │ │ ├── insque.c │ │ ├── lbasename.c │ │ ├── make-temp-file.c │ │ ├── md5.c │ │ ├── objalloc.c │ │ ├── obstack.c │ │ ├── partition.c │ │ ├── regex.c │ │ ├── safe-ctype.c │ │ ├── sigsetmask.c │ │ ├── sort.c │ │ ├── spaces.c │ │ ├── splay-tree.c │ │ ├── strcasecmp.c │ │ ├── strerror.c │ │ ├── strncasecmp.c │ │ ├── strsignal.c │ │ ├── ternary.c │ │ ├── vasprintf.c │ │ ├── xatexit.c │ │ ├── xexit.c │ │ ├── xmalloc.c │ │ ├── xmemdup.c │ │ ├── xstrdup.c │ │ └── xstrerror.c │ ├── libmingw.lib │ ├── libmingw │ │ ├── Makefile │ │ ├── _chkstk.o │ │ ├── dh.o │ │ ├── ds00027.o │ │ ├── ds00053.o │ │ ├── ds00070.o │ │ ├── ds00088.o │ │ ├── ds00130.o │ │ ├── ds00175.o │ │ ├── ds00207.o │ │ ├── ds00272.o │ │ ├── ds00277.o │ │ ├── ds00323.o │ │ ├── ds00342.o │ │ ├── ds00415.o │ │ ├── ds00421.o │ │ ├── ds00424.o │ │ ├── ds00535.o │ │ ├── ds00611.o │ │ ├── ds00724.o │ │ ├── ds00727.o │ │ ├── dt.o │ │ ├── libmingw.lib │ │ └── memo.txt │ ├── nasklib │ │ ├── Makefile │ │ ├── ll.c │ │ ├── ll_lib.c │ │ └── nask.c │ ├── omake │ │ ├── addcr.c │ │ ├── addcr.exe │ │ └── addcrlst.txt │ ├── setmode.bat │ ├── toolstdc │ │ ├── Makefile │ │ ├── gas2nask.c │ │ ├── golib00.c │ │ ├── nask.c │ │ ├── naskcnv0.c │ │ └── sjisconv.c │ ├── toolw32 │ │ ├── Makefile │ │ ├── gas2nask.c │ │ ├── golib00.c │ │ ├── nask.c │ │ ├── naskcnv0.c │ │ └── sjisconv.c │ └── w32clibc │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── clearerr.c │ │ ├── exit.c │ │ ├── fclose.c │ │ ├── feof.c │ │ ├── fflush.c │ │ ├── fgetc.c │ │ ├── fgets.c │ │ ├── fopen.c │ │ ├── fprintf.c │ │ ├── fputc.c │ │ ├── fputs.c │ │ ├── fread.c │ │ ├── free.c │ │ ├── fseek.c │ │ ├── ftell.c │ │ ├── fwrite.c │ │ ├── gets.c │ │ ├── make.bat │ │ ├── malloc.c │ │ ├── printf.c │ │ ├── puts.c │ │ ├── remove.c │ │ ├── rewind.c │ │ ├── startup.c │ │ ├── stdin.c │ │ ├── system.c │ │ ├── ungetc.c │ │ ├── vfprintf.c │ │ ├── vprintf.c │ │ └── windows.h │ ├── hrblib0a │ ├── !cons_9x.bat │ ├── !cons_nt.bat │ ├── Makefile │ ├── make.bat │ └── startup.c │ ├── imgtol0d │ ├── Makefile │ ├── SF16SET.LZH │ └── imgtol.ask │ ├── makefont │ ├── !cons_9x.bat │ ├── !cons_nt.bat │ ├── Makefile │ ├── make.bat │ └── makefont.c │ ├── obj2bi4d │ ├── !cons.bat │ ├── Makefile │ ├── autodec.ask │ ├── autodec_.c │ ├── make.bat │ └── obj2bim.c │ ├── osalink1 │ └── osalink1.c │ ├── sartol0j │ ├── dsar.bat │ ├── esart5.bat │ ├── src_sar │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── autodec.ask │ │ ├── autodec.obj │ │ ├── autodec_.c │ │ ├── dsar.bat │ │ ├── esart5.bat │ │ ├── make.bat │ │ ├── memo.txt │ │ ├── sargow32.lib │ │ └── sartol.c │ └── src_wce │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── make.bat │ │ └── wce.c │ └── tk5lgpl1 │ ├── t5lzma.exe │ └── t5lzma0d │ ├── 7zip │ ├── Common │ │ ├── FileStreams.cpp │ │ ├── FileStreams.h │ │ ├── InBuffer.cpp │ │ ├── InBuffer.h │ │ ├── OutBuffer.cpp │ │ ├── OutBuffer.h │ │ └── StdAfx.h │ ├── Compress │ │ ├── LZ │ │ │ ├── BinTree │ │ │ │ ├── BinTree.h │ │ │ │ ├── BinTree2.h │ │ │ │ ├── BinTree3.h │ │ │ │ ├── BinTree3Z.h │ │ │ │ ├── BinTree3ZMain.h │ │ │ │ ├── BinTree4.h │ │ │ │ ├── BinTree4b.h │ │ │ │ ├── BinTreeMF.h │ │ │ │ ├── BinTreeMFMain.h │ │ │ │ └── BinTreeMain.h │ │ │ ├── HashChain │ │ │ │ ├── HC.h │ │ │ │ ├── HC2.h │ │ │ │ ├── HC3.h │ │ │ │ ├── HC4.h │ │ │ │ ├── HC4b.h │ │ │ │ ├── HCMF.h │ │ │ │ ├── HCMFMain.h │ │ │ │ └── HCMain.h │ │ │ ├── IMatchFinder.h │ │ │ ├── LZInWindow.cpp │ │ │ ├── LZInWindow.h │ │ │ ├── LZOutWindow.cpp │ │ │ ├── LZOutWindow.h │ │ │ ├── Patricia │ │ │ │ ├── Pat.h │ │ │ │ ├── Pat2.h │ │ │ │ ├── Pat2H.h │ │ │ │ ├── Pat2R.h │ │ │ │ ├── Pat3H.h │ │ │ │ ├── Pat4H.h │ │ │ │ └── PatMain.h │ │ │ └── StdAfx.h │ │ ├── LZMA │ │ │ ├── LZMA.h │ │ │ ├── LZMADecoder.cpp │ │ │ ├── LZMADecoder.h │ │ │ ├── LZMAEncoder.cpp │ │ │ ├── LZMAEncoder.h │ │ │ └── StdAfx.h │ │ ├── LZMA_Alone │ │ │ ├── AloneLZMA.dsp │ │ │ ├── AloneLZMA.dsw │ │ │ ├── LzmaAlone.cpp │ │ │ ├── LzmaBench.cpp │ │ │ ├── LzmaBench.h │ │ │ ├── StdAfx.cpp │ │ │ ├── StdAfx.h │ │ │ └── makefile │ │ └── RangeCoder │ │ │ ├── RangeCoder.h │ │ │ ├── RangeCoder.old │ │ │ ├── RangeCoderBit.cpp │ │ │ ├── RangeCoderBit.h │ │ │ ├── RangeCoderBit.old │ │ │ ├── RangeCoderBitTree.h │ │ │ ├── RangeCoderOpt.h │ │ │ ├── RangeCoderOpt.old │ │ │ └── StdAfx.h │ ├── ICoder.h │ └── IStream.h │ ├── Common │ ├── AlignedBuffer.cpp │ ├── AlignedBuffer.h │ ├── CRC.cpp │ ├── CRC.h │ ├── C_FileIO.cpp │ ├── C_FileIO.h │ ├── ComTry.h │ ├── CommandLineParser.cpp │ ├── CommandLineParser.h │ ├── Defs.h │ ├── MyCom.h │ ├── MyUnknown.h │ ├── MyWindows.h │ ├── NewHandler.cpp │ ├── NewHandler.h │ ├── StdAfx.h │ ├── String.cpp │ ├── String.h │ ├── StringConvert.cpp │ ├── StringConvert.h │ ├── StringToInt.cpp │ ├── StringToInt.h │ ├── Types.h │ ├── Vector.cpp │ └── Vector.h │ └── Windows │ ├── Defs.h │ ├── FileIO.cpp │ ├── FileIO.h │ └── StdAfx.h ├── projects ├── 01_day │ ├── helloos0 │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── helloos.img │ │ ├── install.bat │ │ └── run.bat │ ├── helloos1 │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── asm.bat │ │ ├── helloos.img │ │ ├── helloos.nas │ │ ├── install.bat │ │ └── run.bat │ ├── helloos2 │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── asm.bat │ │ ├── helloos.img │ │ ├── helloos.nas │ │ ├── install.bat │ │ └── run.bat │ └── z_tools │ │ ├── OSASK0.PSF │ │ ├── aksa.exe │ │ ├── aska.exe │ │ ├── bim2bin.exe │ │ ├── bim2hrb.exe │ │ ├── bin2obj.exe │ │ ├── cc1.exe │ │ ├── com_mak.txt │ │ ├── comcom.exe │ │ ├── cpp0.exe │ │ ├── doscmd.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 │ │ ├── errno.h │ │ ├── float.h │ │ ├── golibc.lib │ │ ├── haribote.rul │ │ ├── harilibc.lib │ │ ├── limits.h │ │ ├── math.h │ │ ├── setjmp.h │ │ ├── stdarg.h │ │ ├── stddef.h │ │ ├── stdio.h │ │ └── string.h │ │ ├── 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 │ │ ├── fdimage0.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 ├── 02_day │ ├── helloos3 │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── asm.bat │ │ ├── helloos.nas │ │ ├── install.bat │ │ └── run.bat │ ├── helloos4 │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── asm.bat │ │ ├── install.bat │ │ ├── ipl.nas │ │ ├── makeimg.bat │ │ └── run.bat │ └── helloos5 │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── ipl.nas │ │ └── make.bat ├── 03_day │ ├── harib00a │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── ipl.nas │ │ └── make.bat │ ├── harib00b │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── ipl.nas │ │ └── make.bat │ ├── harib00c │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── ipl.nas │ │ └── make.bat │ ├── harib00d │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── ipl.nas │ │ └── make.bat │ ├── harib00e │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── haribote.nas │ │ ├── ipl.nas │ │ └── make.bat │ ├── harib00f │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── haribote.nas │ │ ├── ipl.nas │ │ └── make.bat │ ├── harib00g │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── haribote.nas │ │ ├── ipl10.nas │ │ └── make.bat │ ├── harib00h │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── haribote.nas │ │ ├── ipl10.nas │ │ └── make.bat │ ├── harib00i │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── asmhead.nas │ │ ├── bootpack.c │ │ ├── ipl10.nas │ │ └── make.bat │ └── harib00j │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── asmhead.nas │ │ ├── bootpack.c │ │ ├── ipl10.nas │ │ ├── make.bat │ │ └── naskfunc.nas ├── 04_day │ ├── harib01a │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── asmhead.nas │ │ ├── bootpack.c │ │ ├── ipl10.nas │ │ ├── make.bat │ │ └── naskfunc.nas │ ├── harib01b │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── asmhead.nas │ │ ├── bootpack.c │ │ ├── ipl10.nas │ │ ├── make.bat │ │ └── naskfunc.nas │ ├── harib01c │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── asmhead.nas │ │ ├── bootpack.c │ │ ├── ipl10.nas │ │ ├── make.bat │ │ └── naskfunc.nas │ ├── harib01d │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── asmhead.nas │ │ ├── bootpack.c │ │ ├── ipl10.nas │ │ ├── make.bat │ │ └── naskfunc.nas │ ├── harib01e │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── asmhead.nas │ │ ├── bootpack.c │ │ ├── ipl10.nas │ │ ├── make.bat │ │ └── naskfunc.nas │ ├── harib01f │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── asmhead.nas │ │ ├── bootpack.c │ │ ├── ipl10.nas │ │ ├── make.bat │ │ └── naskfunc.nas │ ├── harib01g │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── asmhead.nas │ │ ├── bootpack.c │ │ ├── ipl10.nas │ │ ├── make.bat │ │ └── naskfunc.nas │ └── harib01h │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── asmhead.nas │ │ ├── bootpack.c │ │ ├── ipl10.nas │ │ ├── make.bat │ │ └── naskfunc.nas ├── 05_day │ ├── harib02a │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── asmhead.nas │ │ ├── bootpack.c │ │ ├── ipl10.nas │ │ ├── make.bat │ │ └── naskfunc.nas │ ├── harib02b │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── asmhead.nas │ │ ├── bootpack.c │ │ ├── ipl10.nas │ │ ├── make.bat │ │ └── naskfunc.nas │ ├── harib02c │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── asmhead.nas │ │ ├── bootpack.c │ │ ├── ipl10.nas │ │ ├── make.bat │ │ └── naskfunc.nas │ ├── harib02d │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── asmhead.nas │ │ ├── bootpack.c │ │ ├── ipl10.nas │ │ ├── make.bat │ │ └── naskfunc.nas │ ├── harib02e │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── asmhead.nas │ │ ├── bootpack.c │ │ ├── hankaku.txt │ │ ├── ipl10.nas │ │ ├── make.bat │ │ └── naskfunc.nas │ ├── harib02f │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── asmhead.nas │ │ ├── bootpack.c │ │ ├── hankaku.txt │ │ ├── ipl10.nas │ │ ├── make.bat │ │ └── naskfunc.nas │ ├── harib02g │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── asmhead.nas │ │ ├── bootpack.c │ │ ├── hankaku.txt │ │ ├── ipl10.nas │ │ ├── make.bat │ │ └── naskfunc.nas │ ├── harib02h │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── asmhead.nas │ │ ├── bootpack.c │ │ ├── hankaku.txt │ │ ├── ipl10.nas │ │ ├── make.bat │ │ └── naskfunc.nas │ └── harib02i │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── asmhead.nas │ │ ├── bootpack.c │ │ ├── hankaku.txt │ │ ├── ipl10.nas │ │ ├── make.bat │ │ └── naskfunc.nas ├── 06_day │ ├── harib03a │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── asmhead.nas │ │ ├── bootpack.c │ │ ├── dsctbl.c │ │ ├── graphic.c │ │ ├── hankaku.txt │ │ ├── ipl10.nas │ │ ├── make.bat │ │ └── naskfunc.nas │ ├── harib03b │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── asmhead.nas │ │ ├── bootpack.c │ │ ├── dsctbl.c │ │ ├── graphic.c │ │ ├── hankaku.txt │ │ ├── ipl10.nas │ │ ├── make.bat │ │ └── naskfunc.nas │ ├── harib03c │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── asmhead.nas │ │ ├── bootpack.c │ │ ├── bootpack.h │ │ ├── dsctbl.c │ │ ├── graphic.c │ │ ├── hankaku.txt │ │ ├── ipl10.nas │ │ ├── make.bat │ │ └── naskfunc.nas │ ├── harib03d │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── asmhead.nas │ │ ├── bootpack.c │ │ ├── bootpack.h │ │ ├── dsctbl.c │ │ ├── graphic.c │ │ ├── hankaku.txt │ │ ├── int.c │ │ ├── ipl10.nas │ │ ├── make.bat │ │ └── naskfunc.nas │ └── harib03e │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── asmhead.nas │ │ ├── bootpack.c │ │ ├── bootpack.h │ │ ├── dsctbl.c │ │ ├── graphic.c │ │ ├── hankaku.txt │ │ ├── int.c │ │ ├── ipl10.nas │ │ ├── make.bat │ │ └── naskfunc.nas ├── 07_day │ ├── harib04a │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── asmhead.nas │ │ ├── bootpack.c │ │ ├── bootpack.h │ │ ├── dsctbl.c │ │ ├── graphic.c │ │ ├── hankaku.txt │ │ ├── int.c │ │ ├── ipl10.nas │ │ ├── make.bat │ │ └── naskfunc.nas │ ├── harib04b │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── asmhead.nas │ │ ├── bootpack.c │ │ ├── bootpack.h │ │ ├── dsctbl.c │ │ ├── graphic.c │ │ ├── hankaku.txt │ │ ├── int.c │ │ ├── ipl10.nas │ │ ├── make.bat │ │ └── naskfunc.nas │ ├── harib04c │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── asmhead.nas │ │ ├── bootpack.c │ │ ├── bootpack.h │ │ ├── dsctbl.c │ │ ├── graphic.c │ │ ├── hankaku.txt │ │ ├── int.c │ │ ├── ipl10.nas │ │ ├── make.bat │ │ └── naskfunc.nas │ ├── harib04d │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── asmhead.nas │ │ ├── bootpack.c │ │ ├── bootpack.h │ │ ├── dsctbl.c │ │ ├── graphic.c │ │ ├── hankaku.txt │ │ ├── int.c │ │ ├── ipl10.nas │ │ ├── make.bat │ │ └── naskfunc.nas │ ├── harib04e │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── asmhead.nas │ │ ├── bootpack.c │ │ ├── bootpack.h │ │ ├── dsctbl.c │ │ ├── fifo.c │ │ ├── graphic.c │ │ ├── hankaku.txt │ │ ├── int.c │ │ ├── ipl10.nas │ │ ├── make.bat │ │ └── naskfunc.nas │ ├── harib04f │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── asmhead.nas │ │ ├── bootpack.c │ │ ├── bootpack.h │ │ ├── dsctbl.c │ │ ├── fifo.c │ │ ├── graphic.c │ │ ├── hankaku.txt │ │ ├── int.c │ │ ├── ipl10.nas │ │ ├── make.bat │ │ └── naskfunc.nas │ └── harib04g │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── asmhead.nas │ │ ├── bootpack.c │ │ ├── bootpack.h │ │ ├── dsctbl.c │ │ ├── fifo.c │ │ ├── graphic.c │ │ ├── hankaku.txt │ │ ├── int.c │ │ ├── ipl10.nas │ │ ├── make.bat │ │ └── naskfunc.nas ├── 08_day │ ├── harib05a │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── asmhead.nas │ │ ├── bootpack.c │ │ ├── bootpack.h │ │ ├── dsctbl.c │ │ ├── fifo.c │ │ ├── graphic.c │ │ ├── hankaku.txt │ │ ├── int.c │ │ ├── ipl10.nas │ │ ├── make.bat │ │ └── naskfunc.nas │ ├── harib05b │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── asmhead.nas │ │ ├── bootpack.c │ │ ├── bootpack.h │ │ ├── dsctbl.c │ │ ├── fifo.c │ │ ├── graphic.c │ │ ├── hankaku.txt │ │ ├── int.c │ │ ├── ipl10.nas │ │ ├── make.bat │ │ └── naskfunc.nas │ ├── harib05c │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── asmhead.nas │ │ ├── bootpack.c │ │ ├── bootpack.h │ │ ├── dsctbl.c │ │ ├── fifo.c │ │ ├── graphic.c │ │ ├── hankaku.txt │ │ ├── int.c │ │ ├── ipl10.nas │ │ ├── make.bat │ │ └── naskfunc.nas │ └── harib05d │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── asmhead.nas │ │ ├── bootpack.c │ │ ├── bootpack.h │ │ ├── dsctbl.c │ │ ├── fifo.c │ │ ├── graphic.c │ │ ├── hankaku.txt │ │ ├── int.c │ │ ├── ipl10.nas │ │ ├── make.bat │ │ └── naskfunc.nas ├── 09_day │ ├── harib06a │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── asmhead.nas │ │ ├── bootpack.c │ │ ├── bootpack.h │ │ ├── dsctbl.c │ │ ├── fifo.c │ │ ├── graphic.c │ │ ├── hankaku.txt │ │ ├── int.c │ │ ├── ipl10.nas │ │ ├── keyboard.c │ │ ├── make.bat │ │ ├── mouse.c │ │ └── naskfunc.nas │ ├── harib06b │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── asmhead.nas │ │ ├── bootpack.c │ │ ├── bootpack.h │ │ ├── dsctbl.c │ │ ├── fifo.c │ │ ├── graphic.c │ │ ├── hankaku.txt │ │ ├── int.c │ │ ├── ipl10.nas │ │ ├── keyboard.c │ │ ├── make.bat │ │ ├── mouse.c │ │ └── naskfunc.nas │ ├── harib06c │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── asmhead.nas │ │ ├── bootpack.c │ │ ├── bootpack.h │ │ ├── dsctbl.c │ │ ├── fifo.c │ │ ├── graphic.c │ │ ├── hankaku.txt │ │ ├── int.c │ │ ├── ipl10.nas │ │ ├── keyboard.c │ │ ├── make.bat │ │ ├── mouse.c │ │ └── naskfunc.nas │ └── harib06d │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── asmhead.nas │ │ ├── bootpack.c │ │ ├── bootpack.h │ │ ├── dsctbl.c │ │ ├── fifo.c │ │ ├── graphic.c │ │ ├── hankaku.txt │ │ ├── int.c │ │ ├── ipl10.nas │ │ ├── keyboard.c │ │ ├── make.bat │ │ ├── mouse.c │ │ └── naskfunc.nas ├── 10_day │ ├── harib07a │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── asmhead.nas │ │ ├── bootpack.c │ │ ├── bootpack.h │ │ ├── dsctbl.c │ │ ├── fifo.c │ │ ├── graphic.c │ │ ├── hankaku.txt │ │ ├── int.c │ │ ├── ipl10.nas │ │ ├── keyboard.c │ │ ├── make.bat │ │ ├── memory.c │ │ ├── mouse.c │ │ └── naskfunc.nas │ ├── harib07b │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── asmhead.nas │ │ ├── bootpack.c │ │ ├── bootpack.h │ │ ├── dsctbl.c │ │ ├── fifo.c │ │ ├── graphic.c │ │ ├── hankaku.txt │ │ ├── int.c │ │ ├── ipl10.nas │ │ ├── keyboard.c │ │ ├── make.bat │ │ ├── memory.c │ │ ├── mouse.c │ │ ├── naskfunc.nas │ │ └── sheet.c │ ├── harib07c │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── asmhead.nas │ │ ├── bootpack.c │ │ ├── bootpack.h │ │ ├── dsctbl.c │ │ ├── fifo.c │ │ ├── graphic.c │ │ ├── hankaku.txt │ │ ├── int.c │ │ ├── ipl10.nas │ │ ├── keyboard.c │ │ ├── make.bat │ │ ├── memory.c │ │ ├── mouse.c │ │ ├── naskfunc.nas │ │ └── sheet.c │ └── harib07d │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── asmhead.nas │ │ ├── bootpack.c │ │ ├── bootpack.h │ │ ├── dsctbl.c │ │ ├── fifo.c │ │ ├── graphic.c │ │ ├── hankaku.txt │ │ ├── int.c │ │ ├── ipl10.nas │ │ ├── keyboard.c │ │ ├── make.bat │ │ ├── memory.c │ │ ├── mouse.c │ │ ├── naskfunc.nas │ │ └── sheet.c ├── 11_day │ ├── harib08a │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── asmhead.nas │ │ ├── bootpack.c │ │ ├── bootpack.h │ │ ├── dsctbl.c │ │ ├── fifo.c │ │ ├── graphic.c │ │ ├── hankaku.txt │ │ ├── int.c │ │ ├── ipl10.nas │ │ ├── keyboard.c │ │ ├── make.bat │ │ ├── memory.c │ │ ├── mouse.c │ │ ├── naskfunc.nas │ │ └── sheet.c │ ├── harib08b │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── asmhead.nas │ │ ├── bootpack.c │ │ ├── bootpack.h │ │ ├── dsctbl.c │ │ ├── fifo.c │ │ ├── graphic.c │ │ ├── hankaku.txt │ │ ├── int.c │ │ ├── ipl10.nas │ │ ├── keyboard.c │ │ ├── make.bat │ │ ├── memory.c │ │ ├── mouse.c │ │ ├── naskfunc.nas │ │ └── sheet.c │ ├── harib08c │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── asmhead.nas │ │ ├── bootpack.c │ │ ├── bootpack.h │ │ ├── dsctbl.c │ │ ├── fifo.c │ │ ├── graphic.c │ │ ├── hankaku.txt │ │ ├── int.c │ │ ├── ipl10.nas │ │ ├── keyboard.c │ │ ├── make.bat │ │ ├── memory.c │ │ ├── mouse.c │ │ ├── naskfunc.nas │ │ └── sheet.c │ ├── harib08d │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── asmhead.nas │ │ ├── bootpack.c │ │ ├── bootpack.h │ │ ├── dsctbl.c │ │ ├── fifo.c │ │ ├── graphic.c │ │ ├── hankaku.txt │ │ ├── int.c │ │ ├── ipl10.nas │ │ ├── keyboard.c │ │ ├── make.bat │ │ ├── memory.c │ │ ├── mouse.c │ │ ├── naskfunc.nas │ │ └── sheet.c │ ├── harib08e │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── asmhead.nas │ │ ├── bootpack.c │ │ ├── bootpack.h │ │ ├── dsctbl.c │ │ ├── fifo.c │ │ ├── graphic.c │ │ ├── hankaku.txt │ │ ├── int.c │ │ ├── ipl10.nas │ │ ├── keyboard.c │ │ ├── make.bat │ │ ├── memory.c │ │ ├── mouse.c │ │ ├── naskfunc.nas │ │ └── sheet.c │ ├── harib08f │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── asmhead.nas │ │ ├── bootpack.c │ │ ├── bootpack.h │ │ ├── dsctbl.c │ │ ├── fifo.c │ │ ├── graphic.c │ │ ├── hankaku.txt │ │ ├── int.c │ │ ├── ipl10.nas │ │ ├── keyboard.c │ │ ├── make.bat │ │ ├── memory.c │ │ ├── mouse.c │ │ ├── naskfunc.nas │ │ └── sheet.c │ ├── harib08g │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── asmhead.nas │ │ ├── bootpack.c │ │ ├── bootpack.h │ │ ├── dsctbl.c │ │ ├── fifo.c │ │ ├── graphic.c │ │ ├── hankaku.txt │ │ ├── int.c │ │ ├── ipl10.nas │ │ ├── keyboard.c │ │ ├── make.bat │ │ ├── memory.c │ │ ├── mouse.c │ │ ├── naskfunc.nas │ │ └── sheet.c │ └── harib08h │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── asmhead.nas │ │ ├── bootpack.c │ │ ├── bootpack.h │ │ ├── dsctbl.c │ │ ├── fifo.c │ │ ├── graphic.c │ │ ├── hankaku.txt │ │ ├── int.c │ │ ├── ipl10.nas │ │ ├── keyboard.c │ │ ├── make.bat │ │ ├── memory.c │ │ ├── mouse.c │ │ ├── naskfunc.nas │ │ └── sheet.c ├── 12_day │ ├── harib09a │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── asmhead.nas │ │ ├── bootpack.c │ │ ├── bootpack.h │ │ ├── dsctbl.c │ │ ├── fifo.c │ │ ├── graphic.c │ │ ├── hankaku.txt │ │ ├── int.c │ │ ├── ipl10.nas │ │ ├── keyboard.c │ │ ├── make.bat │ │ ├── memory.c │ │ ├── mouse.c │ │ ├── naskfunc.nas │ │ ├── sheet.c │ │ └── timer.c │ ├── harib09b │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── asmhead.nas │ │ ├── bootpack.c │ │ ├── bootpack.h │ │ ├── dsctbl.c │ │ ├── fifo.c │ │ ├── graphic.c │ │ ├── hankaku.txt │ │ ├── int.c │ │ ├── ipl10.nas │ │ ├── keyboard.c │ │ ├── make.bat │ │ ├── memory.c │ │ ├── mouse.c │ │ ├── naskfunc.nas │ │ ├── sheet.c │ │ └── timer.c │ ├── harib09c │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── asmhead.nas │ │ ├── bootpack.c │ │ ├── bootpack.h │ │ ├── dsctbl.c │ │ ├── fifo.c │ │ ├── graphic.c │ │ ├── hankaku.txt │ │ ├── int.c │ │ ├── ipl10.nas │ │ ├── keyboard.c │ │ ├── make.bat │ │ ├── memory.c │ │ ├── mouse.c │ │ ├── naskfunc.nas │ │ ├── sheet.c │ │ └── timer.c │ ├── harib09d │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── asmhead.nas │ │ ├── bootpack.c │ │ ├── bootpack.h │ │ ├── dsctbl.c │ │ ├── fifo.c │ │ ├── graphic.c │ │ ├── hankaku.txt │ │ ├── int.c │ │ ├── ipl10.nas │ │ ├── keyboard.c │ │ ├── make.bat │ │ ├── memory.c │ │ ├── mouse.c │ │ ├── naskfunc.nas │ │ ├── sheet.c │ │ └── timer.c │ ├── harib09e │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── asmhead.nas │ │ ├── bootpack.c │ │ ├── bootpack.h │ │ ├── dsctbl.c │ │ ├── fifo.c │ │ ├── graphic.c │ │ ├── hankaku.txt │ │ ├── int.c │ │ ├── ipl10.nas │ │ ├── keyboard.c │ │ ├── make.bat │ │ ├── memory.c │ │ ├── mouse.c │ │ ├── naskfunc.nas │ │ ├── sheet.c │ │ └── timer.c │ ├── harib09f │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── asmhead.nas │ │ ├── bootpack.c │ │ ├── bootpack.h │ │ ├── dsctbl.c │ │ ├── fifo.c │ │ ├── graphic.c │ │ ├── hankaku.txt │ │ ├── int.c │ │ ├── ipl10.nas │ │ ├── keyboard.c │ │ ├── make.bat │ │ ├── memory.c │ │ ├── mouse.c │ │ ├── naskfunc.nas │ │ ├── sheet.c │ │ └── timer.c │ └── harib09g │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── asmhead.nas │ │ ├── bootpack.c │ │ ├── bootpack.h │ │ ├── dsctbl.c │ │ ├── fifo.c │ │ ├── graphic.c │ │ ├── hankaku.txt │ │ ├── int.c │ │ ├── ipl10.nas │ │ ├── keyboard.c │ │ ├── make.bat │ │ ├── memory.c │ │ ├── mouse.c │ │ ├── naskfunc.nas │ │ ├── sheet.c │ │ └── timer.c ├── 13_day │ ├── harib10a │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── asmhead.nas │ │ ├── bootpack.c │ │ ├── bootpack.h │ │ ├── dsctbl.c │ │ ├── fifo.c │ │ ├── graphic.c │ │ ├── hankaku.txt │ │ ├── int.c │ │ ├── ipl10.nas │ │ ├── keyboard.c │ │ ├── make.bat │ │ ├── memory.c │ │ ├── mouse.c │ │ ├── naskfunc.nas │ │ ├── sheet.c │ │ └── timer.c │ ├── harib10b │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── asmhead.nas │ │ ├── bootpack.c │ │ ├── bootpack.h │ │ ├── dsctbl.c │ │ ├── fifo.c │ │ ├── graphic.c │ │ ├── hankaku.txt │ │ ├── int.c │ │ ├── ipl10.nas │ │ ├── keyboard.c │ │ ├── make.bat │ │ ├── memory.c │ │ ├── mouse.c │ │ ├── naskfunc.nas │ │ ├── sheet.c │ │ └── timer.c │ ├── harib10c │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── asmhead.nas │ │ ├── bootpack.c │ │ ├── bootpack.h │ │ ├── dsctbl.c │ │ ├── fifo.c │ │ ├── graphic.c │ │ ├── hankaku.txt │ │ ├── int.c │ │ ├── ipl10.nas │ │ ├── keyboard.c │ │ ├── make.bat │ │ ├── memory.c │ │ ├── mouse.c │ │ ├── naskfunc.nas │ │ ├── sheet.c │ │ └── timer.c │ ├── harib10d │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── asmhead.nas │ │ ├── bootpack.c │ │ ├── bootpack.h │ │ ├── dsctbl.c │ │ ├── fifo.c │ │ ├── graphic.c │ │ ├── hankaku.txt │ │ ├── int.c │ │ ├── ipl10.nas │ │ ├── keyboard.c │ │ ├── make.bat │ │ ├── memory.c │ │ ├── mouse.c │ │ ├── naskfunc.nas │ │ ├── sheet.c │ │ └── timer.c │ ├── harib10e │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── asmhead.nas │ │ ├── bootpack.c │ │ ├── bootpack.h │ │ ├── dsctbl.c │ │ ├── fifo.c │ │ ├── graphic.c │ │ ├── hankaku.txt │ │ ├── int.c │ │ ├── ipl10.nas │ │ ├── keyboard.c │ │ ├── make.bat │ │ ├── memory.c │ │ ├── mouse.c │ │ ├── naskfunc.nas │ │ ├── sheet.c │ │ └── timer.c │ ├── harib10f │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── asmhead.nas │ │ ├── bootpack.c │ │ ├── bootpack.h │ │ ├── dsctbl.c │ │ ├── fifo.c │ │ ├── graphic.c │ │ ├── hankaku.txt │ │ ├── int.c │ │ ├── ipl10.nas │ │ ├── keyboard.c │ │ ├── make.bat │ │ ├── memory.c │ │ ├── mouse.c │ │ ├── naskfunc.nas │ │ ├── sheet.c │ │ └── timer.c │ ├── harib10g │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── asmhead.nas │ │ ├── bootpack.c │ │ ├── bootpack.h │ │ ├── dsctbl.c │ │ ├── fifo.c │ │ ├── graphic.c │ │ ├── hankaku.txt │ │ ├── int.c │ │ ├── ipl10.nas │ │ ├── keyboard.c │ │ ├── make.bat │ │ ├── memory.c │ │ ├── mouse.c │ │ ├── naskfunc.nas │ │ ├── sheet.c │ │ └── timer.c │ ├── harib10h │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── asmhead.nas │ │ ├── bootpack.c │ │ ├── bootpack.h │ │ ├── dsctbl.c │ │ ├── fifo.c │ │ ├── graphic.c │ │ ├── hankaku.txt │ │ ├── int.c │ │ ├── ipl10.nas │ │ ├── keyboard.c │ │ ├── make.bat │ │ ├── memory.c │ │ ├── mouse.c │ │ ├── naskfunc.nas │ │ ├── sheet.c │ │ └── timer.c │ └── harib10i │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── asmhead.nas │ │ ├── bootpack.c │ │ ├── bootpack.h │ │ ├── dsctbl.c │ │ ├── fifo.c │ │ ├── graphic.c │ │ ├── hankaku.txt │ │ ├── int.c │ │ ├── ipl10.nas │ │ ├── keyboard.c │ │ ├── make.bat │ │ ├── memory.c │ │ ├── mouse.c │ │ ├── naskfunc.nas │ │ ├── sheet.c │ │ └── timer.c ├── 14_day │ ├── harib11a │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── asmhead.nas │ │ ├── bootpack.c │ │ ├── bootpack.h │ │ ├── dsctbl.c │ │ ├── fifo.c │ │ ├── graphic.c │ │ ├── hankaku.txt │ │ ├── int.c │ │ ├── ipl10.nas │ │ ├── keyboard.c │ │ ├── make.bat │ │ ├── memory.c │ │ ├── mouse.c │ │ ├── naskfunc.nas │ │ ├── sheet.c │ │ └── timer.c │ ├── harib11b │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── asmhead.nas │ │ ├── bootpack.c │ │ ├── bootpack.h │ │ ├── dsctbl.c │ │ ├── fifo.c │ │ ├── graphic.c │ │ ├── hankaku.txt │ │ ├── int.c │ │ ├── ipl10.nas │ │ ├── keyboard.c │ │ ├── make.bat │ │ ├── memory.c │ │ ├── mouse.c │ │ ├── naskfunc.nas │ │ ├── sheet.c │ │ └── timer.c │ ├── harib11c │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── asmhead.nas │ │ ├── bootpack.c │ │ ├── bootpack.h │ │ ├── dsctbl.c │ │ ├── fifo.c │ │ ├── graphic.c │ │ ├── hankaku.txt │ │ ├── int.c │ │ ├── ipl10.nas │ │ ├── keyboard.c │ │ ├── make.bat │ │ ├── memory.c │ │ ├── mouse.c │ │ ├── naskfunc.nas │ │ ├── sheet.c │ │ └── timer.c │ ├── harib11d │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── asmhead.nas │ │ ├── bootpack.c │ │ ├── bootpack.h │ │ ├── dsctbl.c │ │ ├── fifo.c │ │ ├── graphic.c │ │ ├── hankaku.txt │ │ ├── int.c │ │ ├── ipl10.nas │ │ ├── keyboard.c │ │ ├── make.bat │ │ ├── memory.c │ │ ├── mouse.c │ │ ├── naskfunc.nas │ │ ├── sheet.c │ │ └── timer.c │ ├── harib11e │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── asmhead.nas │ │ ├── bootpack.c │ │ ├── bootpack.h │ │ ├── dsctbl.c │ │ ├── fifo.c │ │ ├── graphic.c │ │ ├── hankaku.txt │ │ ├── int.c │ │ ├── ipl10.nas │ │ ├── keyboard.c │ │ ├── make.bat │ │ ├── memory.c │ │ ├── mouse.c │ │ ├── naskfunc.nas │ │ ├── sheet.c │ │ └── timer.c │ ├── harib11f │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── asmhead.nas │ │ ├── bootpack.c │ │ ├── bootpack.h │ │ ├── dsctbl.c │ │ ├── fifo.c │ │ ├── graphic.c │ │ ├── hankaku.txt │ │ ├── int.c │ │ ├── ipl10.nas │ │ ├── keyboard.c │ │ ├── make.bat │ │ ├── memory.c │ │ ├── mouse.c │ │ ├── naskfunc.nas │ │ ├── sheet.c │ │ └── timer.c │ ├── harib11g │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── asmhead.nas │ │ ├── bootpack.c │ │ ├── bootpack.h │ │ ├── dsctbl.c │ │ ├── fifo.c │ │ ├── graphic.c │ │ ├── hankaku.txt │ │ ├── int.c │ │ ├── ipl10.nas │ │ ├── keyboard.c │ │ ├── make.bat │ │ ├── memory.c │ │ ├── mouse.c │ │ ├── naskfunc.nas │ │ ├── sheet.c │ │ └── timer.c │ ├── harib11h │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── asmhead.nas │ │ ├── bootpack.c │ │ ├── bootpack.h │ │ ├── dsctbl.c │ │ ├── fifo.c │ │ ├── graphic.c │ │ ├── hankaku.txt │ │ ├── int.c │ │ ├── ipl10.nas │ │ ├── keyboard.c │ │ ├── make.bat │ │ ├── memory.c │ │ ├── mouse.c │ │ ├── naskfunc.nas │ │ ├── sheet.c │ │ └── timer.c │ └── harib11i │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── asmhead.nas │ │ ├── bootpack.c │ │ ├── bootpack.h │ │ ├── dsctbl.c │ │ ├── fifo.c │ │ ├── graphic.c │ │ ├── hankaku.txt │ │ ├── int.c │ │ ├── ipl10.nas │ │ ├── keyboard.c │ │ ├── make.bat │ │ ├── memory.c │ │ ├── mouse.c │ │ ├── naskfunc.nas │ │ ├── sheet.c │ │ └── timer.c ├── 15_day │ ├── harib12a │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── asmhead.nas │ │ ├── bootpack.c │ │ ├── bootpack.h │ │ ├── dsctbl.c │ │ ├── fifo.c │ │ ├── graphic.c │ │ ├── hankaku.txt │ │ ├── int.c │ │ ├── ipl10.nas │ │ ├── keyboard.c │ │ ├── make.bat │ │ ├── memory.c │ │ ├── mouse.c │ │ ├── naskfunc.nas │ │ ├── sheet.c │ │ └── timer.c │ ├── harib12b │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── asmhead.nas │ │ ├── bootpack.c │ │ ├── bootpack.h │ │ ├── dsctbl.c │ │ ├── fifo.c │ │ ├── graphic.c │ │ ├── hankaku.txt │ │ ├── int.c │ │ ├── ipl10.nas │ │ ├── keyboard.c │ │ ├── make.bat │ │ ├── memory.c │ │ ├── mouse.c │ │ ├── naskfunc.nas │ │ ├── sheet.c │ │ └── timer.c │ ├── harib12c │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── asmhead.nas │ │ ├── bootpack.c │ │ ├── bootpack.h │ │ ├── dsctbl.c │ │ ├── fifo.c │ │ ├── graphic.c │ │ ├── hankaku.txt │ │ ├── int.c │ │ ├── ipl10.nas │ │ ├── keyboard.c │ │ ├── make.bat │ │ ├── memory.c │ │ ├── mouse.c │ │ ├── naskfunc.nas │ │ ├── sheet.c │ │ └── timer.c │ ├── harib12d │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── asmhead.nas │ │ ├── bootpack.c │ │ ├── bootpack.h │ │ ├── dsctbl.c │ │ ├── fifo.c │ │ ├── graphic.c │ │ ├── hankaku.txt │ │ ├── int.c │ │ ├── ipl10.nas │ │ ├── keyboard.c │ │ ├── make.bat │ │ ├── memory.c │ │ ├── mouse.c │ │ ├── naskfunc.nas │ │ ├── sheet.c │ │ └── timer.c │ ├── harib12e │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── asmhead.nas │ │ ├── bootpack.c │ │ ├── bootpack.h │ │ ├── dsctbl.c │ │ ├── fifo.c │ │ ├── graphic.c │ │ ├── hankaku.txt │ │ ├── int.c │ │ ├── ipl10.nas │ │ ├── keyboard.c │ │ ├── make.bat │ │ ├── memory.c │ │ ├── mouse.c │ │ ├── naskfunc.nas │ │ ├── sheet.c │ │ └── timer.c │ ├── harib12f │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── asmhead.nas │ │ ├── bootpack.c │ │ ├── bootpack.h │ │ ├── dsctbl.c │ │ ├── fifo.c │ │ ├── graphic.c │ │ ├── hankaku.txt │ │ ├── int.c │ │ ├── ipl10.nas │ │ ├── keyboard.c │ │ ├── make.bat │ │ ├── memory.c │ │ ├── mouse.c │ │ ├── naskfunc.nas │ │ ├── sheet.c │ │ └── timer.c │ └── harib12g │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── asmhead.nas │ │ ├── bootpack.c │ │ ├── bootpack.h │ │ ├── dsctbl.c │ │ ├── fifo.c │ │ ├── graphic.c │ │ ├── hankaku.txt │ │ ├── int.c │ │ ├── ipl10.nas │ │ ├── keyboard.c │ │ ├── make.bat │ │ ├── memory.c │ │ ├── mouse.c │ │ ├── mtask.c │ │ ├── naskfunc.nas │ │ ├── sheet.c │ │ └── timer.c ├── 16_day │ ├── harib13a │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── asmhead.nas │ │ ├── bootpack.c │ │ ├── bootpack.h │ │ ├── dsctbl.c │ │ ├── fifo.c │ │ ├── graphic.c │ │ ├── hankaku.txt │ │ ├── int.c │ │ ├── ipl10.nas │ │ ├── keyboard.c │ │ ├── make.bat │ │ ├── memory.c │ │ ├── mouse.c │ │ ├── mtask.c │ │ ├── naskfunc.nas │ │ ├── sheet.c │ │ └── timer.c │ ├── harib13b │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── asmhead.nas │ │ ├── bootpack.c │ │ ├── bootpack.h │ │ ├── dsctbl.c │ │ ├── fifo.c │ │ ├── graphic.c │ │ ├── hankaku.txt │ │ ├── int.c │ │ ├── ipl10.nas │ │ ├── keyboard.c │ │ ├── make.bat │ │ ├── memory.c │ │ ├── mouse.c │ │ ├── mtask.c │ │ ├── naskfunc.nas │ │ ├── sheet.c │ │ └── timer.c │ ├── harib13c │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── asmhead.nas │ │ ├── bootpack.c │ │ ├── bootpack.h │ │ ├── dsctbl.c │ │ ├── fifo.c │ │ ├── graphic.c │ │ ├── hankaku.txt │ │ ├── int.c │ │ ├── ipl10.nas │ │ ├── keyboard.c │ │ ├── make.bat │ │ ├── memory.c │ │ ├── mouse.c │ │ ├── mtask.c │ │ ├── naskfunc.nas │ │ ├── sheet.c │ │ └── timer.c │ ├── harib13d │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── asmhead.nas │ │ ├── bootpack.c │ │ ├── bootpack.h │ │ ├── dsctbl.c │ │ ├── fifo.c │ │ ├── graphic.c │ │ ├── hankaku.txt │ │ ├── int.c │ │ ├── ipl10.nas │ │ ├── keyboard.c │ │ ├── make.bat │ │ ├── memory.c │ │ ├── mouse.c │ │ ├── mtask.c │ │ ├── naskfunc.nas │ │ ├── sheet.c │ │ └── timer.c │ └── harib13e │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── asmhead.nas │ │ ├── bootpack.c │ │ ├── bootpack.h │ │ ├── dsctbl.c │ │ ├── fifo.c │ │ ├── graphic.c │ │ ├── hankaku.txt │ │ ├── int.c │ │ ├── ipl10.nas │ │ ├── keyboard.c │ │ ├── make.bat │ │ ├── memory.c │ │ ├── mouse.c │ │ ├── mtask.c │ │ ├── naskfunc.nas │ │ ├── sheet.c │ │ └── timer.c ├── 17_day │ ├── harib14a │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── asmhead.nas │ │ ├── bootpack.c │ │ ├── bootpack.h │ │ ├── dsctbl.c │ │ ├── fifo.c │ │ ├── graphic.c │ │ ├── hankaku.txt │ │ ├── int.c │ │ ├── ipl10.nas │ │ ├── keyboard.c │ │ ├── make.bat │ │ ├── memory.c │ │ ├── mouse.c │ │ ├── mtask.c │ │ ├── naskfunc.nas │ │ ├── sheet.c │ │ └── timer.c │ ├── harib14b │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── asmhead.nas │ │ ├── bootpack.c │ │ ├── bootpack.h │ │ ├── dsctbl.c │ │ ├── fifo.c │ │ ├── graphic.c │ │ ├── hankaku.txt │ │ ├── int.c │ │ ├── ipl10.nas │ │ ├── keyboard.c │ │ ├── make.bat │ │ ├── memory.c │ │ ├── mouse.c │ │ ├── mtask.c │ │ ├── naskfunc.nas │ │ ├── sheet.c │ │ └── timer.c │ ├── harib14c │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── asmhead.nas │ │ ├── bootpack.c │ │ ├── bootpack.h │ │ ├── dsctbl.c │ │ ├── fifo.c │ │ ├── graphic.c │ │ ├── hankaku.txt │ │ ├── int.c │ │ ├── ipl10.nas │ │ ├── keyboard.c │ │ ├── make.bat │ │ ├── memory.c │ │ ├── mouse.c │ │ ├── mtask.c │ │ ├── naskfunc.nas │ │ ├── sheet.c │ │ └── timer.c │ ├── harib14d │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── asmhead.nas │ │ ├── bootpack.c │ │ ├── bootpack.h │ │ ├── dsctbl.c │ │ ├── fifo.c │ │ ├── graphic.c │ │ ├── hankaku.txt │ │ ├── int.c │ │ ├── ipl10.nas │ │ ├── keyboard.c │ │ ├── make.bat │ │ ├── memory.c │ │ ├── mouse.c │ │ ├── mtask.c │ │ ├── naskfunc.nas │ │ ├── sheet.c │ │ └── timer.c │ ├── harib14e │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── asmhead.nas │ │ ├── bootpack.c │ │ ├── bootpack.h │ │ ├── dsctbl.c │ │ ├── fifo.c │ │ ├── graphic.c │ │ ├── hankaku.txt │ │ ├── int.c │ │ ├── ipl10.nas │ │ ├── keyboard.c │ │ ├── make.bat │ │ ├── memory.c │ │ ├── mouse.c │ │ ├── mtask.c │ │ ├── naskfunc.nas │ │ ├── sheet.c │ │ └── timer.c │ ├── harib14f │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── asmhead.nas │ │ ├── bootpack.c │ │ ├── bootpack.h │ │ ├── dsctbl.c │ │ ├── fifo.c │ │ ├── graphic.c │ │ ├── hankaku.txt │ │ ├── int.c │ │ ├── ipl10.nas │ │ ├── keyboard.c │ │ ├── make.bat │ │ ├── memory.c │ │ ├── mouse.c │ │ ├── mtask.c │ │ ├── naskfunc.nas │ │ ├── sheet.c │ │ └── timer.c │ └── harib14g │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── asmhead.nas │ │ ├── bootpack.c │ │ ├── bootpack.h │ │ ├── dsctbl.c │ │ ├── fifo.c │ │ ├── graphic.c │ │ ├── hankaku.txt │ │ ├── int.c │ │ ├── ipl10.nas │ │ ├── keyboard.c │ │ ├── make.bat │ │ ├── memory.c │ │ ├── mouse.c │ │ ├── mtask.c │ │ ├── naskfunc.nas │ │ ├── sheet.c │ │ └── timer.c ├── 18_day │ ├── harib15a │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── asmhead.nas │ │ ├── bootpack.c │ │ ├── bootpack.h │ │ ├── dsctbl.c │ │ ├── fifo.c │ │ ├── graphic.c │ │ ├── hankaku.txt │ │ ├── int.c │ │ ├── ipl10.nas │ │ ├── keyboard.c │ │ ├── make.bat │ │ ├── memory.c │ │ ├── mouse.c │ │ ├── mtask.c │ │ ├── naskfunc.nas │ │ ├── sheet.c │ │ └── timer.c │ ├── harib15b │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── asmhead.nas │ │ ├── bootpack.c │ │ ├── bootpack.h │ │ ├── dsctbl.c │ │ ├── fifo.c │ │ ├── graphic.c │ │ ├── hankaku.txt │ │ ├── int.c │ │ ├── ipl10.nas │ │ ├── keyboard.c │ │ ├── make.bat │ │ ├── memory.c │ │ ├── mouse.c │ │ ├── mtask.c │ │ ├── naskfunc.nas │ │ ├── sheet.c │ │ └── timer.c │ ├── harib15c │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── asmhead.nas │ │ ├── bootpack.c │ │ ├── bootpack.h │ │ ├── dsctbl.c │ │ ├── fifo.c │ │ ├── graphic.c │ │ ├── hankaku.txt │ │ ├── int.c │ │ ├── ipl10.nas │ │ ├── keyboard.c │ │ ├── make.bat │ │ ├── memory.c │ │ ├── mouse.c │ │ ├── mtask.c │ │ ├── naskfunc.nas │ │ ├── sheet.c │ │ └── timer.c │ ├── harib15d │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── asmhead.nas │ │ ├── bootpack.c │ │ ├── bootpack.h │ │ ├── dsctbl.c │ │ ├── fifo.c │ │ ├── graphic.c │ │ ├── hankaku.txt │ │ ├── int.c │ │ ├── ipl10.nas │ │ ├── keyboard.c │ │ ├── make.bat │ │ ├── memory.c │ │ ├── mouse.c │ │ ├── mtask.c │ │ ├── naskfunc.nas │ │ ├── sheet.c │ │ └── timer.c │ ├── harib15e │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── asmhead.nas │ │ ├── bootpack.c │ │ ├── bootpack.h │ │ ├── dsctbl.c │ │ ├── fifo.c │ │ ├── graphic.c │ │ ├── hankaku.txt │ │ ├── int.c │ │ ├── ipl10.nas │ │ ├── keyboard.c │ │ ├── make.bat │ │ ├── memory.c │ │ ├── mouse.c │ │ ├── mtask.c │ │ ├── naskfunc.nas │ │ ├── sheet.c │ │ └── timer.c │ ├── harib15f │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── asmhead.nas │ │ ├── bootpack.c │ │ ├── bootpack.h │ │ ├── dsctbl.c │ │ ├── fifo.c │ │ ├── graphic.c │ │ ├── hankaku.txt │ │ ├── int.c │ │ ├── ipl10.nas │ │ ├── keyboard.c │ │ ├── make.bat │ │ ├── memory.c │ │ ├── mouse.c │ │ ├── mtask.c │ │ ├── naskfunc.nas │ │ ├── sheet.c │ │ └── timer.c │ └── harib15g │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── asmhead.nas │ │ ├── bootpack.c │ │ ├── bootpack.h │ │ ├── dsctbl.c │ │ ├── fifo.c │ │ ├── graphic.c │ │ ├── hankaku.txt │ │ ├── int.c │ │ ├── ipl10.nas │ │ ├── keyboard.c │ │ ├── make.bat │ │ ├── memory.c │ │ ├── mouse.c │ │ ├── mtask.c │ │ ├── naskfunc.nas │ │ ├── sheet.c │ │ └── timer.c ├── 19_day │ ├── harib16a │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── asmhead.nas │ │ ├── bootpack.c │ │ ├── bootpack.h │ │ ├── dsctbl.c │ │ ├── fifo.c │ │ ├── graphic.c │ │ ├── hankaku.txt │ │ ├── int.c │ │ ├── ipl10.nas │ │ ├── keyboard.c │ │ ├── make.bat │ │ ├── memory.c │ │ ├── mouse.c │ │ ├── mtask.c │ │ ├── naskfunc.nas │ │ ├── sheet.c │ │ └── timer.c │ ├── harib16b │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── asmhead.nas │ │ ├── bootpack.c │ │ ├── bootpack.h │ │ ├── dsctbl.c │ │ ├── fifo.c │ │ ├── graphic.c │ │ ├── hankaku.txt │ │ ├── int.c │ │ ├── ipl10.nas │ │ ├── keyboard.c │ │ ├── make.bat │ │ ├── memory.c │ │ ├── mouse.c │ │ ├── mtask.c │ │ ├── naskfunc.nas │ │ ├── sheet.c │ │ └── timer.c │ ├── harib16c │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── asmhead.nas │ │ ├── bootpack.c │ │ ├── bootpack.h │ │ ├── dsctbl.c │ │ ├── fifo.c │ │ ├── graphic.c │ │ ├── hankaku.txt │ │ ├── int.c │ │ ├── ipl10.nas │ │ ├── keyboard.c │ │ ├── make.bat │ │ ├── memory.c │ │ ├── mouse.c │ │ ├── mtask.c │ │ ├── naskfunc.nas │ │ ├── sheet.c │ │ └── timer.c │ ├── harib16d │ │ ├── !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 │ │ ├── int.c │ │ ├── ipl10.nas │ │ ├── keyboard.c │ │ ├── make.bat │ │ ├── memory.c │ │ ├── mouse.c │ │ ├── mtask.c │ │ ├── naskfunc.nas │ │ ├── sheet.c │ │ ├── timer.c │ │ └── window.c │ └── harib16e │ │ ├── !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 │ │ ├── hlt.nas │ │ ├── int.c │ │ ├── ipl10.nas │ │ ├── keyboard.c │ │ ├── make.bat │ │ ├── memory.c │ │ ├── mouse.c │ │ ├── mtask.c │ │ ├── naskfunc.nas │ │ ├── sheet.c │ │ ├── timer.c │ │ └── window.c ├── 20_day │ ├── harib17a │ │ ├── !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 │ │ ├── hlt.nas │ │ ├── int.c │ │ ├── ipl10.nas │ │ ├── keyboard.c │ │ ├── make.bat │ │ ├── memory.c │ │ ├── mouse.c │ │ ├── mtask.c │ │ ├── naskfunc.nas │ │ ├── sheet.c │ │ ├── timer.c │ │ └── window.c │ ├── harib17b │ │ ├── !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 │ │ ├── hlt.nas │ │ ├── int.c │ │ ├── ipl10.nas │ │ ├── keyboard.c │ │ ├── make.bat │ │ ├── memory.c │ │ ├── mouse.c │ │ ├── mtask.c │ │ ├── naskfunc.nas │ │ ├── sheet.c │ │ ├── timer.c │ │ └── window.c │ ├── harib17c │ │ ├── !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 │ │ ├── hlt.nas │ │ ├── int.c │ │ ├── ipl10.nas │ │ ├── keyboard.c │ │ ├── make.bat │ │ ├── memory.c │ │ ├── mouse.c │ │ ├── mtask.c │ │ ├── naskfunc.nas │ │ ├── sheet.c │ │ ├── timer.c │ │ └── window.c │ ├── harib17d │ │ ├── !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 │ │ ├── hlt.nas │ │ ├── int.c │ │ ├── ipl10.nas │ │ ├── keyboard.c │ │ ├── make.bat │ │ ├── memory.c │ │ ├── mouse.c │ │ ├── mtask.c │ │ ├── naskfunc.nas │ │ ├── sheet.c │ │ ├── timer.c │ │ └── window.c │ ├── harib17e │ │ ├── !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 │ │ ├── hlt.nas │ │ ├── int.c │ │ ├── ipl10.nas │ │ ├── keyboard.c │ │ ├── make.bat │ │ ├── memory.c │ │ ├── mouse.c │ │ ├── mtask.c │ │ ├── naskfunc.nas │ │ ├── sheet.c │ │ ├── timer.c │ │ └── window.c │ ├── harib17f │ │ ├── !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 │ │ ├── hello.nas │ │ ├── int.c │ │ ├── ipl10.nas │ │ ├── keyboard.c │ │ ├── make.bat │ │ ├── memory.c │ │ ├── mouse.c │ │ ├── mtask.c │ │ ├── naskfunc.nas │ │ ├── sheet.c │ │ ├── timer.c │ │ └── window.c │ ├── harib17g │ │ ├── !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 │ │ ├── hello.nas │ │ ├── int.c │ │ ├── ipl10.nas │ │ ├── keyboard.c │ │ ├── make.bat │ │ ├── memory.c │ │ ├── mouse.c │ │ ├── mtask.c │ │ ├── naskfunc.nas │ │ ├── sheet.c │ │ ├── timer.c │ │ └── window.c │ └── harib17h │ │ ├── !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 │ │ ├── hello.nas │ │ ├── hello2.nas │ │ ├── int.c │ │ ├── ipl10.nas │ │ ├── keyboard.c │ │ ├── make.bat │ │ ├── memory.c │ │ ├── mouse.c │ │ ├── mtask.c │ │ ├── naskfunc.nas │ │ ├── sheet.c │ │ ├── timer.c │ │ └── window.c ├── 21_day │ ├── harib18a │ │ ├── !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 │ │ ├── hello.nas │ │ ├── hello2.nas │ │ ├── int.c │ │ ├── ipl10.nas │ │ ├── keyboard.c │ │ ├── make.bat │ │ ├── memory.c │ │ ├── mouse.c │ │ ├── mtask.c │ │ ├── naskfunc.nas │ │ ├── sheet.c │ │ ├── timer.c │ │ └── window.c │ ├── harib18b │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── a.c │ │ ├── a_nask.nas │ │ ├── asmhead.nas │ │ ├── bootpack.c │ │ ├── bootpack.h │ │ ├── console.c │ │ ├── dsctbl.c │ │ ├── fifo.c │ │ ├── file.c │ │ ├── graphic.c │ │ ├── hankaku.txt │ │ ├── hello.nas │ │ ├── hello2.nas │ │ ├── hello3.c │ │ ├── int.c │ │ ├── ipl10.nas │ │ ├── keyboard.c │ │ ├── make.bat │ │ ├── memory.c │ │ ├── mouse.c │ │ ├── mtask.c │ │ ├── naskfunc.nas │ │ ├── sheet.c │ │ ├── timer.c │ │ └── window.c │ ├── harib18c │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── a.c │ │ ├── a_nask.nas │ │ ├── asmhead.nas │ │ ├── bootpack.c │ │ ├── bootpack.h │ │ ├── console.c │ │ ├── crack1.c │ │ ├── dsctbl.c │ │ ├── fifo.c │ │ ├── file.c │ │ ├── graphic.c │ │ ├── hankaku.txt │ │ ├── hello.nas │ │ ├── hello2.nas │ │ ├── hello3.c │ │ ├── int.c │ │ ├── ipl10.nas │ │ ├── keyboard.c │ │ ├── make.bat │ │ ├── memory.c │ │ ├── mouse.c │ │ ├── mtask.c │ │ ├── naskfunc.nas │ │ ├── sheet.c │ │ ├── timer.c │ │ └── window.c │ ├── harib18d │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── a.c │ │ ├── a_nask.nas │ │ ├── asmhead.nas │ │ ├── bootpack.c │ │ ├── bootpack.h │ │ ├── console.c │ │ ├── crack1.c │ │ ├── dsctbl.c │ │ ├── fifo.c │ │ ├── file.c │ │ ├── graphic.c │ │ ├── hankaku.txt │ │ ├── hello.nas │ │ ├── hello2.nas │ │ ├── hello3.c │ │ ├── int.c │ │ ├── ipl10.nas │ │ ├── keyboard.c │ │ ├── make.bat │ │ ├── memory.c │ │ ├── mouse.c │ │ ├── mtask.c │ │ ├── naskfunc.nas │ │ ├── sheet.c │ │ ├── timer.c │ │ └── window.c │ ├── harib18e │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── a.c │ │ ├── a_nask.nas │ │ ├── asmhead.nas │ │ ├── bootpack.c │ │ ├── bootpack.h │ │ ├── console.c │ │ ├── crack1.c │ │ ├── dsctbl.c │ │ ├── fifo.c │ │ ├── file.c │ │ ├── graphic.c │ │ ├── hankaku.txt │ │ ├── hello.nas │ │ ├── hello2.nas │ │ ├── hello3.c │ │ ├── int.c │ │ ├── ipl10.nas │ │ ├── keyboard.c │ │ ├── make.bat │ │ ├── memory.c │ │ ├── mouse.c │ │ ├── mtask.c │ │ ├── naskfunc.nas │ │ ├── sheet.c │ │ ├── timer.c │ │ └── window.c │ ├── harib18f │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── a.c │ │ ├── a_nask.nas │ │ ├── asmhead.nas │ │ ├── bootpack.c │ │ ├── bootpack.h │ │ ├── console.c │ │ ├── crack1.c │ │ ├── crack2.nas │ │ ├── dsctbl.c │ │ ├── fifo.c │ │ ├── file.c │ │ ├── graphic.c │ │ ├── hankaku.txt │ │ ├── hello.nas │ │ ├── hello2.nas │ │ ├── hello3.c │ │ ├── int.c │ │ ├── ipl10.nas │ │ ├── keyboard.c │ │ ├── make.bat │ │ ├── memory.c │ │ ├── mouse.c │ │ ├── mtask.c │ │ ├── naskfunc.nas │ │ ├── sheet.c │ │ ├── timer.c │ │ └── window.c │ └── harib18g │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── a.c │ │ ├── a_nask.nas │ │ ├── asmhead.nas │ │ ├── bootpack.c │ │ ├── bootpack.h │ │ ├── console.c │ │ ├── crack1.c │ │ ├── crack2.nas │ │ ├── dsctbl.c │ │ ├── fifo.c │ │ ├── file.c │ │ ├── graphic.c │ │ ├── hankaku.txt │ │ ├── hello.nas │ │ ├── hello2.nas │ │ ├── hello3.c │ │ ├── int.c │ │ ├── ipl10.nas │ │ ├── keyboard.c │ │ ├── make.bat │ │ ├── memory.c │ │ ├── mouse.c │ │ ├── mtask.c │ │ ├── naskfunc.nas │ │ ├── sheet.c │ │ ├── timer.c │ │ └── window.c ├── 22_day │ ├── harib19a │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── a.c │ │ ├── a_nask.nas │ │ ├── asmhead.nas │ │ ├── bootpack.c │ │ ├── bootpack.h │ │ ├── console.c │ │ ├── crack1.c │ │ ├── crack2.nas │ │ ├── crack3.nas │ │ ├── crack4.nas │ │ ├── crack5.nas │ │ ├── crack6.nas │ │ ├── dsctbl.c │ │ ├── fifo.c │ │ ├── file.c │ │ ├── graphic.c │ │ ├── hankaku.txt │ │ ├── hello.nas │ │ ├── hello2.nas │ │ ├── hello3.c │ │ ├── int.c │ │ ├── ipl10.nas │ │ ├── keyboard.c │ │ ├── make.bat │ │ ├── memory.c │ │ ├── mouse.c │ │ ├── mtask.c │ │ ├── naskfunc.nas │ │ ├── sheet.c │ │ ├── timer.c │ │ └── window.c │ ├── harib19b │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── a.c │ │ ├── a_nask.nas │ │ ├── asmhead.nas │ │ ├── bootpack.c │ │ ├── bootpack.h │ │ ├── bug1.c │ │ ├── console.c │ │ ├── dsctbl.c │ │ ├── fifo.c │ │ ├── file.c │ │ ├── graphic.c │ │ ├── hankaku.txt │ │ ├── hello.nas │ │ ├── hello2.nas │ │ ├── hello3.c │ │ ├── int.c │ │ ├── ipl10.nas │ │ ├── keyboard.c │ │ ├── make.bat │ │ ├── memory.c │ │ ├── mouse.c │ │ ├── mtask.c │ │ ├── naskfunc.nas │ │ ├── sheet.c │ │ ├── timer.c │ │ └── window.c │ ├── harib19c │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── a.c │ │ ├── a_nask.nas │ │ ├── asmhead.nas │ │ ├── bootpack.c │ │ ├── bootpack.h │ │ ├── bug1.c │ │ ├── bug2.c │ │ ├── bug3.c │ │ ├── console.c │ │ ├── dsctbl.c │ │ ├── fifo.c │ │ ├── file.c │ │ ├── graphic.c │ │ ├── hankaku.txt │ │ ├── hello.nas │ │ ├── hello2.nas │ │ ├── hello3.c │ │ ├── int.c │ │ ├── ipl10.nas │ │ ├── keyboard.c │ │ ├── make.bat │ │ ├── memory.c │ │ ├── mouse.c │ │ ├── mtask.c │ │ ├── naskfunc.nas │ │ ├── sheet.c │ │ ├── timer.c │ │ └── window.c │ ├── harib19d │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── a.c │ │ ├── a_nask.nas │ │ ├── asmhead.nas │ │ ├── bootpack.c │ │ ├── bootpack.h │ │ ├── bug1.c │ │ ├── bug2.c │ │ ├── bug3.c │ │ ├── console.c │ │ ├── dsctbl.c │ │ ├── fifo.c │ │ ├── file.c │ │ ├── graphic.c │ │ ├── hankaku.txt │ │ ├── hello.nas │ │ ├── hello2.nas │ │ ├── hello3.c │ │ ├── hello4.c │ │ ├── int.c │ │ ├── ipl10.nas │ │ ├── keyboard.c │ │ ├── make.bat │ │ ├── memory.c │ │ ├── mouse.c │ │ ├── mtask.c │ │ ├── naskfunc.nas │ │ ├── sheet.c │ │ ├── timer.c │ │ └── window.c │ ├── harib19e │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── a.c │ │ ├── a_nask.nas │ │ ├── asmhead.nas │ │ ├── bootpack.c │ │ ├── bootpack.h │ │ ├── bug1.c │ │ ├── bug2.c │ │ ├── bug3.c │ │ ├── console.c │ │ ├── dsctbl.c │ │ ├── fifo.c │ │ ├── file.c │ │ ├── graphic.c │ │ ├── hankaku.txt │ │ ├── hello.nas │ │ ├── hello2.nas │ │ ├── hello3.c │ │ ├── hello4.c │ │ ├── hello5.nas │ │ ├── int.c │ │ ├── ipl10.nas │ │ ├── keyboard.c │ │ ├── make.bat │ │ ├── memory.c │ │ ├── mouse.c │ │ ├── mtask.c │ │ ├── naskfunc.nas │ │ ├── sheet.c │ │ ├── timer.c │ │ └── window.c │ ├── harib19f │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── a.c │ │ ├── a_nask.nas │ │ ├── asmhead.nas │ │ ├── bootpack.c │ │ ├── bootpack.h │ │ ├── bug1.c │ │ ├── bug2.c │ │ ├── bug3.c │ │ ├── console.c │ │ ├── dsctbl.c │ │ ├── fifo.c │ │ ├── file.c │ │ ├── graphic.c │ │ ├── hankaku.txt │ │ ├── hello.nas │ │ ├── hello2.nas │ │ ├── hello3.c │ │ ├── hello4.c │ │ ├── hello5.nas │ │ ├── int.c │ │ ├── ipl10.nas │ │ ├── keyboard.c │ │ ├── make.bat │ │ ├── memory.c │ │ ├── mouse.c │ │ ├── mtask.c │ │ ├── naskfunc.nas │ │ ├── sheet.c │ │ ├── timer.c │ │ ├── window.c │ │ └── winhelo.c │ └── harib19g │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── a.c │ │ ├── a_nask.nas │ │ ├── asmhead.nas │ │ ├── bootpack.c │ │ ├── bootpack.h │ │ ├── console.c │ │ ├── dsctbl.c │ │ ├── fifo.c │ │ ├── file.c │ │ ├── graphic.c │ │ ├── hankaku.txt │ │ ├── hello.nas │ │ ├── hello2.nas │ │ ├── hello3.c │ │ ├── hello4.c │ │ ├── hello5.nas │ │ ├── int.c │ │ ├── ipl10.nas │ │ ├── keyboard.c │ │ ├── make.bat │ │ ├── memory.c │ │ ├── mouse.c │ │ ├── mtask.c │ │ ├── naskfunc.nas │ │ ├── sheet.c │ │ ├── timer.c │ │ ├── window.c │ │ ├── winhelo.c │ │ └── winhelo2.c ├── 23_day │ ├── harib20a │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── a.c │ │ ├── a_nask.nas │ │ ├── asmhead.nas │ │ ├── bootpack.c │ │ ├── bootpack.h │ │ ├── console.c │ │ ├── dsctbl.c │ │ ├── fifo.c │ │ ├── file.c │ │ ├── graphic.c │ │ ├── hankaku.txt │ │ ├── hello.nas │ │ ├── hello2.nas │ │ ├── hello3.c │ │ ├── hello4.c │ │ ├── hello5.nas │ │ ├── int.c │ │ ├── ipl10.nas │ │ ├── keyboard.c │ │ ├── make.bat │ │ ├── memory.c │ │ ├── mouse.c │ │ ├── mtask.c │ │ ├── naskfunc.nas │ │ ├── sheet.c │ │ ├── timer.c │ │ ├── window.c │ │ ├── winhelo.c │ │ ├── winhelo2.c │ │ └── winhelo3.c │ ├── harib20b │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── a.c │ │ ├── a_nask.nas │ │ ├── asmhead.nas │ │ ├── bootpack.c │ │ ├── bootpack.h │ │ ├── console.c │ │ ├── dsctbl.c │ │ ├── fifo.c │ │ ├── file.c │ │ ├── graphic.c │ │ ├── hankaku.txt │ │ ├── hello.nas │ │ ├── hello2.nas │ │ ├── hello3.c │ │ ├── hello4.c │ │ ├── hello5.nas │ │ ├── int.c │ │ ├── ipl10.nas │ │ ├── keyboard.c │ │ ├── make.bat │ │ ├── memory.c │ │ ├── mouse.c │ │ ├── mtask.c │ │ ├── naskfunc.nas │ │ ├── sheet.c │ │ ├── star1.c │ │ ├── stars.c │ │ ├── timer.c │ │ ├── window.c │ │ ├── winhelo.c │ │ ├── winhelo2.c │ │ └── winhelo3.c │ ├── harib20c │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── a.c │ │ ├── a_nask.nas │ │ ├── asmhead.nas │ │ ├── bootpack.c │ │ ├── bootpack.h │ │ ├── console.c │ │ ├── dsctbl.c │ │ ├── fifo.c │ │ ├── file.c │ │ ├── graphic.c │ │ ├── hankaku.txt │ │ ├── hello.nas │ │ ├── hello2.nas │ │ ├── hello3.c │ │ ├── hello4.c │ │ ├── hello5.nas │ │ ├── int.c │ │ ├── ipl10.nas │ │ ├── keyboard.c │ │ ├── make.bat │ │ ├── memory.c │ │ ├── mouse.c │ │ ├── mtask.c │ │ ├── naskfunc.nas │ │ ├── sheet.c │ │ ├── star1.c │ │ ├── stars.c │ │ ├── stars2.c │ │ ├── timer.c │ │ ├── window.c │ │ ├── winhelo.c │ │ ├── winhelo2.c │ │ └── winhelo3.c │ ├── harib20d │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── a.c │ │ ├── a_nask.nas │ │ ├── asmhead.nas │ │ ├── bootpack.c │ │ ├── bootpack.h │ │ ├── console.c │ │ ├── dsctbl.c │ │ ├── fifo.c │ │ ├── file.c │ │ ├── graphic.c │ │ ├── hankaku.txt │ │ ├── hello.nas │ │ ├── hello2.nas │ │ ├── hello3.c │ │ ├── hello4.c │ │ ├── hello5.nas │ │ ├── int.c │ │ ├── ipl10.nas │ │ ├── keyboard.c │ │ ├── lines.c │ │ ├── make.bat │ │ ├── memory.c │ │ ├── mouse.c │ │ ├── mtask.c │ │ ├── naskfunc.nas │ │ ├── sheet.c │ │ ├── star1.c │ │ ├── stars.c │ │ ├── stars2.c │ │ ├── timer.c │ │ ├── window.c │ │ ├── winhelo.c │ │ ├── winhelo2.c │ │ └── winhelo3.c │ ├── harib20e │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── a.c │ │ ├── a_nask.nas │ │ ├── asmhead.nas │ │ ├── bootpack.c │ │ ├── bootpack.h │ │ ├── console.c │ │ ├── dsctbl.c │ │ ├── fifo.c │ │ ├── file.c │ │ ├── graphic.c │ │ ├── hankaku.txt │ │ ├── hello.nas │ │ ├── hello2.nas │ │ ├── hello3.c │ │ ├── hello4.c │ │ ├── hello5.nas │ │ ├── int.c │ │ ├── ipl10.nas │ │ ├── keyboard.c │ │ ├── lines.c │ │ ├── make.bat │ │ ├── memory.c │ │ ├── mouse.c │ │ ├── mtask.c │ │ ├── naskfunc.nas │ │ ├── sheet.c │ │ ├── star1.c │ │ ├── stars.c │ │ ├── stars2.c │ │ ├── timer.c │ │ ├── window.c │ │ ├── winhelo.c │ │ ├── winhelo2.c │ │ └── winhelo3.c │ ├── harib20f │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── a.c │ │ ├── a_nask.nas │ │ ├── asmhead.nas │ │ ├── bootpack.c │ │ ├── bootpack.h │ │ ├── console.c │ │ ├── dsctbl.c │ │ ├── fifo.c │ │ ├── file.c │ │ ├── graphic.c │ │ ├── hankaku.txt │ │ ├── hello.nas │ │ ├── hello2.nas │ │ ├── hello3.c │ │ ├── hello4.c │ │ ├── hello5.nas │ │ ├── int.c │ │ ├── ipl10.nas │ │ ├── keyboard.c │ │ ├── lines.c │ │ ├── make.bat │ │ ├── memory.c │ │ ├── mouse.c │ │ ├── mtask.c │ │ ├── naskfunc.nas │ │ ├── sheet.c │ │ ├── star1.c │ │ ├── stars.c │ │ ├── stars2.c │ │ ├── timer.c │ │ ├── window.c │ │ ├── winhelo.c │ │ ├── winhelo2.c │ │ └── winhelo3.c │ ├── harib20g │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── a.c │ │ ├── a_nask.nas │ │ ├── asmhead.nas │ │ ├── bootpack.c │ │ ├── bootpack.h │ │ ├── console.c │ │ ├── dsctbl.c │ │ ├── fifo.c │ │ ├── file.c │ │ ├── graphic.c │ │ ├── hankaku.txt │ │ ├── hello.nas │ │ ├── hello2.nas │ │ ├── hello3.c │ │ ├── hello4.c │ │ ├── hello5.nas │ │ ├── int.c │ │ ├── ipl10.nas │ │ ├── keyboard.c │ │ ├── lines.c │ │ ├── make.bat │ │ ├── memory.c │ │ ├── mouse.c │ │ ├── mtask.c │ │ ├── naskfunc.nas │ │ ├── sheet.c │ │ ├── star1.c │ │ ├── stars.c │ │ ├── stars2.c │ │ ├── timer.c │ │ ├── walk.c │ │ ├── window.c │ │ ├── winhelo.c │ │ ├── winhelo2.c │ │ └── winhelo3.c │ └── harib20h │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── a.c │ │ ├── a_nask.nas │ │ ├── asmhead.nas │ │ ├── bootpack.c │ │ ├── bootpack.h │ │ ├── console.c │ │ ├── dsctbl.c │ │ ├── fifo.c │ │ ├── file.c │ │ ├── graphic.c │ │ ├── hankaku.txt │ │ ├── hello.nas │ │ ├── hello2.nas │ │ ├── hello3.c │ │ ├── hello4.c │ │ ├── hello5.nas │ │ ├── int.c │ │ ├── ipl10.nas │ │ ├── keyboard.c │ │ ├── lines.c │ │ ├── make.bat │ │ ├── memory.c │ │ ├── mouse.c │ │ ├── mtask.c │ │ ├── naskfunc.nas │ │ ├── sheet.c │ │ ├── star1.c │ │ ├── stars.c │ │ ├── stars2.c │ │ ├── timer.c │ │ ├── walk.c │ │ ├── window.c │ │ ├── winhelo.c │ │ ├── winhelo2.c │ │ └── winhelo3.c ├── 24_day │ ├── harib21a │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── a.c │ │ ├── a_nask.nas │ │ ├── asmhead.nas │ │ ├── bootpack.c │ │ ├── bootpack.h │ │ ├── console.c │ │ ├── dsctbl.c │ │ ├── fifo.c │ │ ├── file.c │ │ ├── graphic.c │ │ ├── hankaku.txt │ │ ├── hello.nas │ │ ├── hello2.nas │ │ ├── hello3.c │ │ ├── hello4.c │ │ ├── hello5.nas │ │ ├── int.c │ │ ├── ipl10.nas │ │ ├── keyboard.c │ │ ├── lines.c │ │ ├── make.bat │ │ ├── memory.c │ │ ├── mouse.c │ │ ├── mtask.c │ │ ├── naskfunc.nas │ │ ├── sheet.c │ │ ├── star1.c │ │ ├── stars.c │ │ ├── stars2.c │ │ ├── timer.c │ │ ├── walk.c │ │ ├── window.c │ │ ├── winhelo.c │ │ ├── winhelo2.c │ │ └── winhelo3.c │ ├── harib21b │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── a.c │ │ ├── a_nask.nas │ │ ├── asmhead.nas │ │ ├── bootpack.c │ │ ├── bootpack.h │ │ ├── console.c │ │ ├── dsctbl.c │ │ ├── fifo.c │ │ ├── file.c │ │ ├── graphic.c │ │ ├── hankaku.txt │ │ ├── hello.nas │ │ ├── hello2.nas │ │ ├── hello3.c │ │ ├── hello4.c │ │ ├── hello5.nas │ │ ├── int.c │ │ ├── ipl10.nas │ │ ├── keyboard.c │ │ ├── lines.c │ │ ├── make.bat │ │ ├── memory.c │ │ ├── mouse.c │ │ ├── mtask.c │ │ ├── naskfunc.nas │ │ ├── sheet.c │ │ ├── star1.c │ │ ├── stars.c │ │ ├── stars2.c │ │ ├── timer.c │ │ ├── walk.c │ │ ├── window.c │ │ ├── winhelo.c │ │ ├── winhelo2.c │ │ └── winhelo3.c │ ├── harib21c │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── a.c │ │ ├── a_nask.nas │ │ ├── asmhead.nas │ │ ├── bootpack.c │ │ ├── bootpack.h │ │ ├── console.c │ │ ├── dsctbl.c │ │ ├── fifo.c │ │ ├── file.c │ │ ├── graphic.c │ │ ├── hankaku.txt │ │ ├── hello.nas │ │ ├── hello2.nas │ │ ├── hello3.c │ │ ├── hello4.c │ │ ├── hello5.nas │ │ ├── int.c │ │ ├── ipl10.nas │ │ ├── keyboard.c │ │ ├── lines.c │ │ ├── make.bat │ │ ├── memory.c │ │ ├── mouse.c │ │ ├── mtask.c │ │ ├── naskfunc.nas │ │ ├── sheet.c │ │ ├── star1.c │ │ ├── stars.c │ │ ├── stars2.c │ │ ├── timer.c │ │ ├── walk.c │ │ ├── window.c │ │ ├── winhelo.c │ │ ├── winhelo2.c │ │ └── winhelo3.c │ ├── harib21d │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── a.c │ │ ├── a_nask.nas │ │ ├── asmhead.nas │ │ ├── bootpack.c │ │ ├── bootpack.h │ │ ├── console.c │ │ ├── dsctbl.c │ │ ├── fifo.c │ │ ├── file.c │ │ ├── graphic.c │ │ ├── hankaku.txt │ │ ├── hello.nas │ │ ├── hello2.nas │ │ ├── hello3.c │ │ ├── hello4.c │ │ ├── hello5.nas │ │ ├── int.c │ │ ├── ipl10.nas │ │ ├── keyboard.c │ │ ├── lines.c │ │ ├── make.bat │ │ ├── memory.c │ │ ├── mouse.c │ │ ├── mtask.c │ │ ├── naskfunc.nas │ │ ├── sheet.c │ │ ├── star1.c │ │ ├── stars.c │ │ ├── stars2.c │ │ ├── timer.c │ │ ├── walk.c │ │ ├── window.c │ │ ├── winhelo.c │ │ ├── winhelo2.c │ │ └── winhelo3.c │ ├── harib21e │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── a.c │ │ ├── a_nask.nas │ │ ├── asmhead.nas │ │ ├── bootpack.c │ │ ├── bootpack.h │ │ ├── console.c │ │ ├── dsctbl.c │ │ ├── fifo.c │ │ ├── file.c │ │ ├── graphic.c │ │ ├── hankaku.txt │ │ ├── hello.nas │ │ ├── hello2.nas │ │ ├── hello3.c │ │ ├── hello4.c │ │ ├── hello5.nas │ │ ├── int.c │ │ ├── ipl10.nas │ │ ├── keyboard.c │ │ ├── lines.c │ │ ├── make.bat │ │ ├── memory.c │ │ ├── mouse.c │ │ ├── mtask.c │ │ ├── naskfunc.nas │ │ ├── sheet.c │ │ ├── star1.c │ │ ├── stars.c │ │ ├── stars2.c │ │ ├── timer.c │ │ ├── walk.c │ │ ├── window.c │ │ ├── winhelo.c │ │ ├── winhelo2.c │ │ └── winhelo3.c │ ├── harib21f │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── a.c │ │ ├── a_nask.nas │ │ ├── asmhead.nas │ │ ├── bootpack.c │ │ ├── bootpack.h │ │ ├── console.c │ │ ├── dsctbl.c │ │ ├── fifo.c │ │ ├── file.c │ │ ├── graphic.c │ │ ├── hankaku.txt │ │ ├── hello.nas │ │ ├── hello2.nas │ │ ├── hello3.c │ │ ├── hello4.c │ │ ├── hello5.nas │ │ ├── int.c │ │ ├── ipl10.nas │ │ ├── keyboard.c │ │ ├── lines.c │ │ ├── make.bat │ │ ├── memory.c │ │ ├── mouse.c │ │ ├── mtask.c │ │ ├── naskfunc.nas │ │ ├── sheet.c │ │ ├── star1.c │ │ ├── stars.c │ │ ├── stars2.c │ │ ├── timer.c │ │ ├── walk.c │ │ ├── window.c │ │ ├── winhelo.c │ │ ├── winhelo2.c │ │ └── winhelo3.c │ ├── harib21g │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── a.c │ │ ├── a_nask.nas │ │ ├── asmhead.nas │ │ ├── bootpack.c │ │ ├── bootpack.h │ │ ├── console.c │ │ ├── dsctbl.c │ │ ├── fifo.c │ │ ├── file.c │ │ ├── graphic.c │ │ ├── hankaku.txt │ │ ├── hello.nas │ │ ├── hello2.nas │ │ ├── hello3.c │ │ ├── hello4.c │ │ ├── hello5.nas │ │ ├── int.c │ │ ├── ipl10.nas │ │ ├── keyboard.c │ │ ├── lines.c │ │ ├── make.bat │ │ ├── memory.c │ │ ├── mouse.c │ │ ├── mtask.c │ │ ├── naskfunc.nas │ │ ├── noodle.c │ │ ├── sheet.c │ │ ├── star1.c │ │ ├── stars.c │ │ ├── stars2.c │ │ ├── timer.c │ │ ├── walk.c │ │ ├── window.c │ │ ├── winhelo.c │ │ ├── winhelo2.c │ │ └── winhelo3.c │ └── harib21h │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── a.c │ │ ├── a_nask.nas │ │ ├── asmhead.nas │ │ ├── bootpack.c │ │ ├── bootpack.h │ │ ├── console.c │ │ ├── dsctbl.c │ │ ├── fifo.c │ │ ├── file.c │ │ ├── graphic.c │ │ ├── hankaku.txt │ │ ├── hello.nas │ │ ├── hello2.nas │ │ ├── hello3.c │ │ ├── hello4.c │ │ ├── hello5.nas │ │ ├── int.c │ │ ├── ipl10.nas │ │ ├── keyboard.c │ │ ├── lines.c │ │ ├── make.bat │ │ ├── memory.c │ │ ├── mouse.c │ │ ├── mtask.c │ │ ├── naskfunc.nas │ │ ├── noodle.c │ │ ├── sheet.c │ │ ├── star1.c │ │ ├── stars.c │ │ ├── stars2.c │ │ ├── timer.c │ │ ├── walk.c │ │ ├── window.c │ │ ├── winhelo.c │ │ ├── winhelo2.c │ │ └── winhelo3.c ├── 25_day │ ├── harib22a │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── a.c │ │ ├── a_nask.nas │ │ ├── asmhead.nas │ │ ├── beepdown.c │ │ ├── bootpack.c │ │ ├── bootpack.h │ │ ├── console.c │ │ ├── dsctbl.c │ │ ├── fifo.c │ │ ├── file.c │ │ ├── graphic.c │ │ ├── hankaku.txt │ │ ├── hello.nas │ │ ├── hello2.nas │ │ ├── hello3.c │ │ ├── hello4.c │ │ ├── hello5.nas │ │ ├── int.c │ │ ├── ipl10.nas │ │ ├── keyboard.c │ │ ├── lines.c │ │ ├── make.bat │ │ ├── memory.c │ │ ├── mouse.c │ │ ├── mtask.c │ │ ├── naskfunc.nas │ │ ├── noodle.c │ │ ├── sheet.c │ │ ├── star1.c │ │ ├── stars.c │ │ ├── stars2.c │ │ ├── timer.c │ │ ├── walk.c │ │ ├── window.c │ │ ├── winhelo.c │ │ ├── winhelo2.c │ │ └── winhelo3.c │ ├── harib22b │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── a.c │ │ ├── a_nask.nas │ │ ├── asmhead.nas │ │ ├── beepdown.c │ │ ├── bootpack.c │ │ ├── bootpack.h │ │ ├── color.c │ │ ├── console.c │ │ ├── dsctbl.c │ │ ├── fifo.c │ │ ├── file.c │ │ ├── graphic.c │ │ ├── hankaku.txt │ │ ├── hello.nas │ │ ├── hello2.nas │ │ ├── hello3.c │ │ ├── hello4.c │ │ ├── hello5.nas │ │ ├── int.c │ │ ├── ipl10.nas │ │ ├── keyboard.c │ │ ├── lines.c │ │ ├── make.bat │ │ ├── memory.c │ │ ├── mouse.c │ │ ├── mtask.c │ │ ├── naskfunc.nas │ │ ├── noodle.c │ │ ├── sheet.c │ │ ├── star1.c │ │ ├── stars.c │ │ ├── stars2.c │ │ ├── timer.c │ │ ├── walk.c │ │ ├── window.c │ │ ├── winhelo.c │ │ ├── winhelo2.c │ │ └── winhelo3.c │ ├── harib22c │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── a.c │ │ ├── a_nask.nas │ │ ├── asmhead.nas │ │ ├── beepdown.c │ │ ├── bootpack.c │ │ ├── bootpack.h │ │ ├── color.c │ │ ├── color2.c │ │ ├── console.c │ │ ├── dsctbl.c │ │ ├── fifo.c │ │ ├── file.c │ │ ├── graphic.c │ │ ├── hankaku.txt │ │ ├── hello.nas │ │ ├── hello2.nas │ │ ├── hello3.c │ │ ├── hello4.c │ │ ├── hello5.nas │ │ ├── int.c │ │ ├── ipl10.nas │ │ ├── keyboard.c │ │ ├── lines.c │ │ ├── make.bat │ │ ├── memory.c │ │ ├── mouse.c │ │ ├── mtask.c │ │ ├── naskfunc.nas │ │ ├── noodle.c │ │ ├── sheet.c │ │ ├── star1.c │ │ ├── stars.c │ │ ├── stars2.c │ │ ├── timer.c │ │ ├── walk.c │ │ ├── window.c │ │ ├── winhelo.c │ │ ├── winhelo2.c │ │ └── winhelo3.c │ ├── harib22d │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── a.c │ │ ├── a_nask.nas │ │ ├── asmhead.nas │ │ ├── beepdown.c │ │ ├── bootpack.c │ │ ├── bootpack.h │ │ ├── color.c │ │ ├── color2.c │ │ ├── console.c │ │ ├── dsctbl.c │ │ ├── fifo.c │ │ ├── file.c │ │ ├── graphic.c │ │ ├── hankaku.txt │ │ ├── hello.nas │ │ ├── hello2.nas │ │ ├── hello3.c │ │ ├── hello4.c │ │ ├── hello5.nas │ │ ├── int.c │ │ ├── ipl10.nas │ │ ├── keyboard.c │ │ ├── lines.c │ │ ├── make.bat │ │ ├── memory.c │ │ ├── mouse.c │ │ ├── mtask.c │ │ ├── naskfunc.nas │ │ ├── noodle.c │ │ ├── sheet.c │ │ ├── star1.c │ │ ├── stars.c │ │ ├── stars2.c │ │ ├── timer.c │ │ ├── walk.c │ │ ├── window.c │ │ ├── winhelo.c │ │ ├── winhelo2.c │ │ └── winhelo3.c │ ├── harib22e │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── a.c │ │ ├── a_nask.nas │ │ ├── asmhead.nas │ │ ├── beepdown.c │ │ ├── bootpack.c │ │ ├── bootpack.h │ │ ├── color.c │ │ ├── color2.c │ │ ├── console.c │ │ ├── dsctbl.c │ │ ├── fifo.c │ │ ├── file.c │ │ ├── graphic.c │ │ ├── hankaku.txt │ │ ├── hello.nas │ │ ├── hello2.nas │ │ ├── hello3.c │ │ ├── hello4.c │ │ ├── hello5.nas │ │ ├── int.c │ │ ├── ipl10.nas │ │ ├── keyboard.c │ │ ├── lines.c │ │ ├── make.bat │ │ ├── memory.c │ │ ├── mouse.c │ │ ├── mtask.c │ │ ├── naskfunc.nas │ │ ├── noodle.c │ │ ├── sheet.c │ │ ├── star1.c │ │ ├── stars.c │ │ ├── stars2.c │ │ ├── timer.c │ │ ├── walk.c │ │ ├── window.c │ │ ├── winhelo.c │ │ ├── winhelo2.c │ │ └── winhelo3.c │ ├── harib22f │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── a.c │ │ ├── a_nask.nas │ │ ├── asmhead.nas │ │ ├── beepdown.c │ │ ├── bootpack.c │ │ ├── bootpack.h │ │ ├── color.c │ │ ├── color2.c │ │ ├── console.c │ │ ├── dsctbl.c │ │ ├── fifo.c │ │ ├── file.c │ │ ├── graphic.c │ │ ├── hankaku.txt │ │ ├── hello.nas │ │ ├── hello2.nas │ │ ├── hello3.c │ │ ├── hello4.c │ │ ├── hello5.nas │ │ ├── int.c │ │ ├── ipl10.nas │ │ ├── keyboard.c │ │ ├── lines.c │ │ ├── make.bat │ │ ├── memory.c │ │ ├── mouse.c │ │ ├── mtask.c │ │ ├── naskfunc.nas │ │ ├── noodle.c │ │ ├── sheet.c │ │ ├── star1.c │ │ ├── stars.c │ │ ├── stars2.c │ │ ├── timer.c │ │ ├── walk.c │ │ ├── window.c │ │ ├── winhelo.c │ │ ├── winhelo2.c │ │ └── winhelo3.c │ ├── harib22g │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── a.c │ │ ├── a_nask.nas │ │ ├── asmhead.nas │ │ ├── beepdown.c │ │ ├── bootpack.c │ │ ├── bootpack.h │ │ ├── color.c │ │ ├── color2.c │ │ ├── console.c │ │ ├── dsctbl.c │ │ ├── fifo.c │ │ ├── file.c │ │ ├── graphic.c │ │ ├── hankaku.txt │ │ ├── hello.nas │ │ ├── hello2.nas │ │ ├── hello3.c │ │ ├── hello4.c │ │ ├── hello5.nas │ │ ├── int.c │ │ ├── ipl10.nas │ │ ├── keyboard.c │ │ ├── lines.c │ │ ├── make.bat │ │ ├── memory.c │ │ ├── mouse.c │ │ ├── mtask.c │ │ ├── naskfunc.nas │ │ ├── noodle.c │ │ ├── sheet.c │ │ ├── star1.c │ │ ├── stars.c │ │ ├── stars2.c │ │ ├── timer.c │ │ ├── walk.c │ │ ├── window.c │ │ ├── winhelo.c │ │ ├── winhelo2.c │ │ └── winhelo3.c │ ├── harib22h │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── a.c │ │ ├── a_nask.nas │ │ ├── asmhead.nas │ │ ├── beepdown.c │ │ ├── bootpack.c │ │ ├── bootpack.h │ │ ├── color.c │ │ ├── color2.c │ │ ├── console.c │ │ ├── dsctbl.c │ │ ├── fifo.c │ │ ├── file.c │ │ ├── graphic.c │ │ ├── hankaku.txt │ │ ├── hello.nas │ │ ├── hello2.nas │ │ ├── hello3.c │ │ ├── hello4.c │ │ ├── hello5.nas │ │ ├── int.c │ │ ├── ipl10.nas │ │ ├── keyboard.c │ │ ├── lines.c │ │ ├── make.bat │ │ ├── memory.c │ │ ├── mouse.c │ │ ├── mtask.c │ │ ├── naskfunc.nas │ │ ├── noodle.c │ │ ├── sheet.c │ │ ├── star1.c │ │ ├── stars.c │ │ ├── stars2.c │ │ ├── timer.c │ │ ├── walk.c │ │ ├── window.c │ │ ├── winhelo.c │ │ ├── winhelo2.c │ │ └── winhelo3.c │ ├── harib22i │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── a.c │ │ ├── a_nask.nas │ │ ├── asmhead.nas │ │ ├── beepdown.c │ │ ├── bootpack.c │ │ ├── bootpack.h │ │ ├── color.c │ │ ├── color2.c │ │ ├── console.c │ │ ├── dsctbl.c │ │ ├── fifo.c │ │ ├── file.c │ │ ├── graphic.c │ │ ├── hankaku.txt │ │ ├── hello.nas │ │ ├── hello2.nas │ │ ├── hello3.c │ │ ├── hello4.c │ │ ├── hello5.nas │ │ ├── int.c │ │ ├── ipl10.nas │ │ ├── keyboard.c │ │ ├── lines.c │ │ ├── make.bat │ │ ├── memory.c │ │ ├── mouse.c │ │ ├── mtask.c │ │ ├── naskfunc.nas │ │ ├── noodle.c │ │ ├── sheet.c │ │ ├── star1.c │ │ ├── stars.c │ │ ├── stars2.c │ │ ├── timer.c │ │ ├── walk.c │ │ ├── window.c │ │ ├── winhelo.c │ │ ├── winhelo2.c │ │ └── winhelo3.c │ └── harib22j │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── a.c │ │ ├── a_nask.nas │ │ ├── asmhead.nas │ │ ├── beepdown.c │ │ ├── bootpack.c │ │ ├── bootpack.h │ │ ├── color.c │ │ ├── color2.c │ │ ├── console.c │ │ ├── dsctbl.c │ │ ├── fifo.c │ │ ├── file.c │ │ ├── graphic.c │ │ ├── hankaku.txt │ │ ├── hello.nas │ │ ├── hello2.nas │ │ ├── hello3.c │ │ ├── hello4.c │ │ ├── hello5.nas │ │ ├── int.c │ │ ├── ipl10.nas │ │ ├── keyboard.c │ │ ├── lines.c │ │ ├── make.bat │ │ ├── memory.c │ │ ├── mouse.c │ │ ├── mtask.c │ │ ├── naskfunc.nas │ │ ├── noodle.c │ │ ├── sheet.c │ │ ├── star1.c │ │ ├── stars.c │ │ ├── stars2.c │ │ ├── timer.c │ │ ├── walk.c │ │ ├── window.c │ │ ├── winhelo.c │ │ ├── winhelo2.c │ │ └── winhelo3.c ├── 26_day │ ├── harib23a │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── a.c │ │ ├── a_nask.nas │ │ ├── asmhead.nas │ │ ├── beepdown.c │ │ ├── bootpack.c │ │ ├── bootpack.h │ │ ├── color.c │ │ ├── color2.c │ │ ├── console.c │ │ ├── dsctbl.c │ │ ├── fifo.c │ │ ├── file.c │ │ ├── graphic.c │ │ ├── hankaku.txt │ │ ├── hello.nas │ │ ├── hello2.nas │ │ ├── hello3.c │ │ ├── hello4.c │ │ ├── hello5.nas │ │ ├── int.c │ │ ├── ipl10.nas │ │ ├── keyboard.c │ │ ├── lines.c │ │ ├── make.bat │ │ ├── memory.c │ │ ├── mouse.c │ │ ├── mtask.c │ │ ├── naskfunc.nas │ │ ├── noodle.c │ │ ├── sheet.c │ │ ├── star1.c │ │ ├── stars.c │ │ ├── stars2.c │ │ ├── timer.c │ │ ├── walk.c │ │ ├── window.c │ │ ├── winhelo.c │ │ ├── winhelo2.c │ │ └── winhelo3.c │ ├── harib23b │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── a.c │ │ ├── a_nask.nas │ │ ├── asmhead.nas │ │ ├── beepdown.c │ │ ├── bootpack.c │ │ ├── bootpack.h │ │ ├── color.c │ │ ├── color2.c │ │ ├── console.c │ │ ├── dsctbl.c │ │ ├── fifo.c │ │ ├── file.c │ │ ├── graphic.c │ │ ├── hankaku.txt │ │ ├── hello.nas │ │ ├── hello2.nas │ │ ├── hello3.c │ │ ├── hello4.c │ │ ├── hello5.nas │ │ ├── int.c │ │ ├── ipl10.nas │ │ ├── keyboard.c │ │ ├── lines.c │ │ ├── make.bat │ │ ├── memory.c │ │ ├── mouse.c │ │ ├── mtask.c │ │ ├── naskfunc.nas │ │ ├── noodle.c │ │ ├── sheet.c │ │ ├── star1.c │ │ ├── stars.c │ │ ├── stars2.c │ │ ├── timer.c │ │ ├── walk.c │ │ ├── window.c │ │ ├── winhelo.c │ │ ├── winhelo2.c │ │ └── winhelo3.c │ ├── harib23c │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── a.c │ │ ├── a_nask.nas │ │ ├── asmhead.nas │ │ ├── beepdown.c │ │ ├── bootpack.c │ │ ├── bootpack.h │ │ ├── color.c │ │ ├── color2.c │ │ ├── console.c │ │ ├── dsctbl.c │ │ ├── fifo.c │ │ ├── file.c │ │ ├── graphic.c │ │ ├── hankaku.txt │ │ ├── hello.nas │ │ ├── hello2.nas │ │ ├── hello3.c │ │ ├── hello4.c │ │ ├── hello5.nas │ │ ├── int.c │ │ ├── ipl10.nas │ │ ├── keyboard.c │ │ ├── lines.c │ │ ├── make.bat │ │ ├── memory.c │ │ ├── mouse.c │ │ ├── mtask.c │ │ ├── naskfunc.nas │ │ ├── noodle.c │ │ ├── sheet.c │ │ ├── star1.c │ │ ├── stars.c │ │ ├── stars2.c │ │ ├── timer.c │ │ ├── walk.c │ │ ├── window.c │ │ ├── winhelo.c │ │ ├── winhelo2.c │ │ └── winhelo3.c │ ├── harib23d │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── a.c │ │ ├── a_nask.nas │ │ ├── asmhead.nas │ │ ├── beepdown.c │ │ ├── bootpack.c │ │ ├── bootpack.h │ │ ├── color.c │ │ ├── color2.c │ │ ├── console.c │ │ ├── dsctbl.c │ │ ├── fifo.c │ │ ├── file.c │ │ ├── graphic.c │ │ ├── hankaku.txt │ │ ├── hello.nas │ │ ├── hello2.nas │ │ ├── hello3.c │ │ ├── hello4.c │ │ ├── hello5.nas │ │ ├── int.c │ │ ├── ipl10.nas │ │ ├── keyboard.c │ │ ├── lines.c │ │ ├── make.bat │ │ ├── memory.c │ │ ├── mouse.c │ │ ├── mtask.c │ │ ├── naskfunc.nas │ │ ├── noodle.c │ │ ├── sheet.c │ │ ├── star1.c │ │ ├── stars.c │ │ ├── stars2.c │ │ ├── timer.c │ │ ├── walk.c │ │ ├── window.c │ │ ├── winhelo.c │ │ ├── winhelo2.c │ │ └── winhelo3.c │ ├── harib23e │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── a.c │ │ ├── a_nask.nas │ │ ├── asmhead.nas │ │ ├── beepdown.c │ │ ├── bootpack.c │ │ ├── bootpack.h │ │ ├── color.c │ │ ├── color2.c │ │ ├── console.c │ │ ├── dsctbl.c │ │ ├── fifo.c │ │ ├── file.c │ │ ├── graphic.c │ │ ├── hankaku.txt │ │ ├── hello.nas │ │ ├── hello2.nas │ │ ├── hello3.c │ │ ├── hello4.c │ │ ├── hello5.nas │ │ ├── int.c │ │ ├── ipl10.nas │ │ ├── keyboard.c │ │ ├── lines.c │ │ ├── make.bat │ │ ├── memory.c │ │ ├── mouse.c │ │ ├── mtask.c │ │ ├── naskfunc.nas │ │ ├── noodle.c │ │ ├── sheet.c │ │ ├── star1.c │ │ ├── stars.c │ │ ├── stars2.c │ │ ├── timer.c │ │ ├── walk.c │ │ ├── window.c │ │ ├── winhelo.c │ │ ├── winhelo2.c │ │ └── winhelo3.c │ ├── harib23f │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── a.c │ │ ├── a_nask.nas │ │ ├── asmhead.nas │ │ ├── beepdown.c │ │ ├── bootpack.c │ │ ├── bootpack.h │ │ ├── color.c │ │ ├── color2.c │ │ ├── console.c │ │ ├── dsctbl.c │ │ ├── fifo.c │ │ ├── file.c │ │ ├── graphic.c │ │ ├── hankaku.txt │ │ ├── hello.nas │ │ ├── hello2.nas │ │ ├── hello3.c │ │ ├── hello4.c │ │ ├── hello5.nas │ │ ├── int.c │ │ ├── ipl10.nas │ │ ├── keyboard.c │ │ ├── lines.c │ │ ├── make.bat │ │ ├── memory.c │ │ ├── mouse.c │ │ ├── mtask.c │ │ ├── naskfunc.nas │ │ ├── noodle.c │ │ ├── sheet.c │ │ ├── star1.c │ │ ├── stars.c │ │ ├── stars2.c │ │ ├── timer.c │ │ ├── walk.c │ │ ├── window.c │ │ ├── winhelo.c │ │ ├── winhelo2.c │ │ └── winhelo3.c │ ├── harib23g │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── a.c │ │ ├── a_nask.nas │ │ ├── asmhead.nas │ │ ├── beepdown.c │ │ ├── bootpack.c │ │ ├── bootpack.h │ │ ├── color.c │ │ ├── color2.c │ │ ├── console.c │ │ ├── dsctbl.c │ │ ├── fifo.c │ │ ├── file.c │ │ ├── graphic.c │ │ ├── hankaku.txt │ │ ├── hello.nas │ │ ├── hello2.nas │ │ ├── hello3.c │ │ ├── hello4.c │ │ ├── hello5.nas │ │ ├── int.c │ │ ├── ipl10.nas │ │ ├── keyboard.c │ │ ├── lines.c │ │ ├── make.bat │ │ ├── memory.c │ │ ├── mouse.c │ │ ├── mtask.c │ │ ├── naskfunc.nas │ │ ├── noodle.c │ │ ├── sheet.c │ │ ├── star1.c │ │ ├── stars.c │ │ ├── stars2.c │ │ ├── timer.c │ │ ├── walk.c │ │ ├── window.c │ │ ├── winhelo.c │ │ ├── winhelo2.c │ │ └── winhelo3.c │ ├── harib23h │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── a.c │ │ ├── a_nask.nas │ │ ├── asmhead.nas │ │ ├── beepdown.c │ │ ├── bootpack.c │ │ ├── bootpack.h │ │ ├── color.c │ │ ├── color2.c │ │ ├── console.c │ │ ├── dsctbl.c │ │ ├── fifo.c │ │ ├── file.c │ │ ├── graphic.c │ │ ├── hankaku.txt │ │ ├── hello.nas │ │ ├── hello2.nas │ │ ├── hello3.c │ │ ├── hello4.c │ │ ├── hello5.nas │ │ ├── int.c │ │ ├── ipl10.nas │ │ ├── keyboard.c │ │ ├── lines.c │ │ ├── make.bat │ │ ├── memory.c │ │ ├── mouse.c │ │ ├── mtask.c │ │ ├── naskfunc.nas │ │ ├── noodle.c │ │ ├── sheet.c │ │ ├── star1.c │ │ ├── stars.c │ │ ├── stars2.c │ │ ├── timer.c │ │ ├── walk.c │ │ ├── window.c │ │ ├── winhelo.c │ │ ├── winhelo2.c │ │ └── winhelo3.c │ ├── harib23i │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── a.c │ │ ├── a_nask.nas │ │ ├── asmhead.nas │ │ ├── beepdown.c │ │ ├── bootpack.c │ │ ├── bootpack.h │ │ ├── color.c │ │ ├── color2.c │ │ ├── console.c │ │ ├── dsctbl.c │ │ ├── fifo.c │ │ ├── file.c │ │ ├── graphic.c │ │ ├── hankaku.txt │ │ ├── hello.nas │ │ ├── hello2.nas │ │ ├── hello3.c │ │ ├── hello4.c │ │ ├── hello5.nas │ │ ├── int.c │ │ ├── ipl10.nas │ │ ├── keyboard.c │ │ ├── lines.c │ │ ├── make.bat │ │ ├── memory.c │ │ ├── mouse.c │ │ ├── mtask.c │ │ ├── naskfunc.nas │ │ ├── noodle.c │ │ ├── sheet.c │ │ ├── star1.c │ │ ├── stars.c │ │ ├── stars2.c │ │ ├── timer.c │ │ ├── walk.c │ │ ├── window.c │ │ ├── winhelo.c │ │ ├── winhelo2.c │ │ └── winhelo3.c │ └── harib23j │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── a.c │ │ ├── a_nask.nas │ │ ├── asmhead.nas │ │ ├── beepdown.c │ │ ├── bootpack.c │ │ ├── bootpack.h │ │ ├── color.c │ │ ├── color2.c │ │ ├── console.c │ │ ├── dsctbl.c │ │ ├── fifo.c │ │ ├── file.c │ │ ├── graphic.c │ │ ├── hankaku.txt │ │ ├── hello.nas │ │ ├── hello2.nas │ │ ├── hello3.c │ │ ├── hello4.c │ │ ├── hello5.nas │ │ ├── int.c │ │ ├── ipl10.nas │ │ ├── keyboard.c │ │ ├── lines.c │ │ ├── make.bat │ │ ├── memory.c │ │ ├── mouse.c │ │ ├── mtask.c │ │ ├── naskfunc.nas │ │ ├── noodle.c │ │ ├── sheet.c │ │ ├── star1.c │ │ ├── stars.c │ │ ├── stars2.c │ │ ├── timer.c │ │ ├── walk.c │ │ ├── window.c │ │ ├── winhelo.c │ │ ├── winhelo2.c │ │ └── winhelo3.c ├── 27_day │ ├── harib24a │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── a.c │ │ ├── a_nask.nas │ │ ├── asmhead.nas │ │ ├── beepdown.c │ │ ├── bootpack.c │ │ ├── bootpack.h │ │ ├── color.c │ │ ├── color2.c │ │ ├── console.c │ │ ├── dsctbl.c │ │ ├── fifo.c │ │ ├── file.c │ │ ├── graphic.c │ │ ├── hankaku.txt │ │ ├── hello.nas │ │ ├── hello2.nas │ │ ├── hello3.c │ │ ├── hello4.c │ │ ├── hello5.nas │ │ ├── int.c │ │ ├── ipl10.nas │ │ ├── keyboard.c │ │ ├── lines.c │ │ ├── make.bat │ │ ├── memory.c │ │ ├── mouse.c │ │ ├── mtask.c │ │ ├── naskfunc.nas │ │ ├── noodle.c │ │ ├── sheet.c │ │ ├── star1.c │ │ ├── stars.c │ │ ├── stars2.c │ │ ├── timer.c │ │ ├── walk.c │ │ ├── window.c │ │ ├── winhelo.c │ │ ├── winhelo2.c │ │ └── winhelo3.c │ ├── harib24b │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── a.c │ │ ├── a_nask.nas │ │ ├── asmhead.nas │ │ ├── beepdown.c │ │ ├── bootpack.c │ │ ├── bootpack.h │ │ ├── color.c │ │ ├── color2.c │ │ ├── console.c │ │ ├── dsctbl.c │ │ ├── fifo.c │ │ ├── file.c │ │ ├── graphic.c │ │ ├── hankaku.txt │ │ ├── hello.nas │ │ ├── hello2.nas │ │ ├── hello3.c │ │ ├── hello4.c │ │ ├── hello5.nas │ │ ├── int.c │ │ ├── ipl10.nas │ │ ├── keyboard.c │ │ ├── lines.c │ │ ├── make.bat │ │ ├── memory.c │ │ ├── mouse.c │ │ ├── mtask.c │ │ ├── naskfunc.nas │ │ ├── noodle.c │ │ ├── sheet.c │ │ ├── star1.c │ │ ├── stars.c │ │ ├── stars2.c │ │ ├── timer.c │ │ ├── walk.c │ │ ├── window.c │ │ ├── winhelo.c │ │ ├── winhelo2.c │ │ └── winhelo3.c │ ├── harib24c │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── a.c │ │ ├── a_nask.nas │ │ ├── asmhead.nas │ │ ├── beepdown.c │ │ ├── bootpack.c │ │ ├── bootpack.h │ │ ├── color.c │ │ ├── color2.c │ │ ├── console.c │ │ ├── crack7.nas │ │ ├── dsctbl.c │ │ ├── fifo.c │ │ ├── file.c │ │ ├── graphic.c │ │ ├── hankaku.txt │ │ ├── hello.nas │ │ ├── hello2.nas │ │ ├── hello3.c │ │ ├── hello4.c │ │ ├── hello5.nas │ │ ├── int.c │ │ ├── ipl10.nas │ │ ├── keyboard.c │ │ ├── lines.c │ │ ├── make.bat │ │ ├── memory.c │ │ ├── mouse.c │ │ ├── mtask.c │ │ ├── naskfunc.nas │ │ ├── noodle.c │ │ ├── sheet.c │ │ ├── star1.c │ │ ├── stars.c │ │ ├── stars2.c │ │ ├── timer.c │ │ ├── walk.c │ │ ├── window.c │ │ ├── winhelo.c │ │ ├── winhelo2.c │ │ └── winhelo3.c │ ├── harib24d │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── a.c │ │ ├── a_nask.nas │ │ ├── asmhead.nas │ │ ├── beepdown.c │ │ ├── bootpack.c │ │ ├── bootpack.h │ │ ├── color.c │ │ ├── color2.c │ │ ├── console.c │ │ ├── crack7.nas │ │ ├── dsctbl.c │ │ ├── fifo.c │ │ ├── file.c │ │ ├── graphic.c │ │ ├── hankaku.txt │ │ ├── hello.nas │ │ ├── hello2.nas │ │ ├── hello3.c │ │ ├── hello4.c │ │ ├── hello5.nas │ │ ├── int.c │ │ ├── ipl10.nas │ │ ├── keyboard.c │ │ ├── lines.c │ │ ├── make.bat │ │ ├── memory.c │ │ ├── mouse.c │ │ ├── mtask.c │ │ ├── naskfunc.nas │ │ ├── noodle.c │ │ ├── sheet.c │ │ ├── star1.c │ │ ├── stars.c │ │ ├── stars2.c │ │ ├── timer.c │ │ ├── walk.c │ │ ├── window.c │ │ ├── winhelo.c │ │ ├── winhelo2.c │ │ └── winhelo3.c │ ├── harib24e │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── a.c │ │ ├── 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 │ │ ├── asmhead.nas │ │ ├── beepdown.c │ │ ├── bootpack.c │ │ ├── bootpack.h │ │ ├── color.c │ │ ├── color2.c │ │ ├── console.c │ │ ├── crack7.nas │ │ ├── dsctbl.c │ │ ├── fifo.c │ │ ├── file.c │ │ ├── graphic.c │ │ ├── hankaku.txt │ │ ├── hello.nas │ │ ├── hello2.nas │ │ ├── hello3.c │ │ ├── hello4.c │ │ ├── hello5.nas │ │ ├── int.c │ │ ├── ipl10.nas │ │ ├── keyboard.c │ │ ├── lines.c │ │ ├── make.bat │ │ ├── memory.c │ │ ├── mouse.c │ │ ├── mtask.c │ │ ├── naskfunc.nas │ │ ├── noodle.c │ │ ├── sheet.c │ │ ├── star1.c │ │ ├── stars.c │ │ ├── stars2.c │ │ ├── timer.c │ │ ├── walk.c │ │ ├── window.c │ │ ├── winhelo.c │ │ ├── winhelo2.c │ │ └── winhelo3.c │ ├── harib24f │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── a.c │ │ ├── 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 │ │ ├── apilib.h │ │ ├── asmhead.nas │ │ ├── beepdown.c │ │ ├── bootpack.c │ │ ├── bootpack.h │ │ ├── color.c │ │ ├── color2.c │ │ ├── console.c │ │ ├── dsctbl.c │ │ ├── fifo.c │ │ ├── file.c │ │ ├── graphic.c │ │ ├── hankaku.txt │ │ ├── hello3.c │ │ ├── hello4.c │ │ ├── hello5.nas │ │ ├── int.c │ │ ├── ipl10.nas │ │ ├── keyboard.c │ │ ├── lines.c │ │ ├── make.bat │ │ ├── memory.c │ │ ├── mouse.c │ │ ├── mtask.c │ │ ├── naskfunc.nas │ │ ├── noodle.c │ │ ├── sheet.c │ │ ├── star1.c │ │ ├── stars.c │ │ ├── stars2.c │ │ ├── timer.c │ │ ├── walk.c │ │ ├── window.c │ │ ├── winhelo.c │ │ ├── winhelo2.c │ │ └── winhelo3.c │ └── harib24g │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── a │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── a.c │ │ ├── a.hrb │ │ └── make.bat │ │ ├── apilib.h │ │ ├── apilib │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── 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 │ │ ├── apilib.lib │ │ └── make.bat │ │ ├── app_make.txt │ │ ├── beepdown │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── beepdown.c │ │ ├── beepdown.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 │ │ ├── haribote.rul │ │ ├── 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 │ │ ├── ipl10.bin │ │ ├── ipl10.nas │ │ ├── keyboard.c │ │ ├── make.bat │ │ ├── memory.c │ │ ├── mouse.c │ │ ├── mtask.c │ │ ├── naskfunc.nas │ │ ├── sheet.c │ │ ├── timer.c │ │ └── window.c │ │ ├── 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 │ │ ├── lines │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── lines.c │ │ ├── lines.hrb │ │ └── make.bat │ │ ├── make.bat │ │ ├── noodle │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── make.bat │ │ ├── noodle.c │ │ └── noodle.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 │ │ ├── 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 ├── 28_day │ ├── harib25a │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── a │ │ │ ├── !cons_9x.bat │ │ │ ├── !cons_nt.bat │ │ │ ├── Makefile │ │ │ ├── a.c │ │ │ ├── a.hrb │ │ │ └── make.bat │ │ ├── apilib.h │ │ ├── apilib │ │ │ ├── !cons_9x.bat │ │ │ ├── !cons_nt.bat │ │ │ ├── Makefile │ │ │ ├── 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 │ │ │ ├── apilib.lib │ │ │ └── make.bat │ │ ├── app_make.txt │ │ ├── beepdown │ │ │ ├── !cons_9x.bat │ │ │ ├── !cons_nt.bat │ │ │ ├── Makefile │ │ │ ├── beepdown.c │ │ │ ├── beepdown.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 │ │ ├── haribote.rul │ │ ├── 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 │ │ │ ├── ipl10.bin │ │ │ ├── ipl10.nas │ │ │ ├── keyboard.c │ │ │ ├── make.bat │ │ │ ├── memory.c │ │ │ ├── mouse.c │ │ │ ├── mtask.c │ │ │ ├── naskfunc.nas │ │ │ ├── sheet.c │ │ │ ├── timer.c │ │ │ └── window.c │ │ ├── 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 │ │ ├── lines │ │ │ ├── !cons_9x.bat │ │ │ ├── !cons_nt.bat │ │ │ ├── Makefile │ │ │ ├── lines.c │ │ │ ├── lines.hrb │ │ │ └── make.bat │ │ ├── make.bat │ │ ├── noodle │ │ │ ├── !cons_9x.bat │ │ │ ├── !cons_nt.bat │ │ │ ├── Makefile │ │ │ ├── make.bat │ │ │ ├── noodle.c │ │ │ └── noodle.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.hrb │ │ ├── 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 │ │ ├── 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 │ ├── harib25b │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── a │ │ │ ├── !cons_9x.bat │ │ │ ├── !cons_nt.bat │ │ │ ├── Makefile │ │ │ ├── a.c │ │ │ ├── a.hrb │ │ │ └── make.bat │ │ ├── apilib.h │ │ ├── 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 │ │ │ ├── apilib.lib │ │ │ └── make.bat │ │ ├── app_make.txt │ │ ├── beepdown │ │ │ ├── !cons_9x.bat │ │ │ ├── !cons_nt.bat │ │ │ ├── Makefile │ │ │ ├── beepdown.c │ │ │ ├── beepdown.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 │ │ ├── haribote.rul │ │ ├── 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 │ │ │ ├── ipl10.bin │ │ │ ├── ipl10.nas │ │ │ ├── keyboard.c │ │ │ ├── make.bat │ │ │ ├── memory.c │ │ │ ├── mouse.c │ │ │ ├── mtask.c │ │ │ ├── naskfunc.nas │ │ │ ├── sheet.c │ │ │ ├── timer.c │ │ │ └── window.c │ │ ├── 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 │ │ ├── lines │ │ │ ├── !cons_9x.bat │ │ │ ├── !cons_nt.bat │ │ │ ├── Makefile │ │ │ ├── lines.c │ │ │ ├── lines.hrb │ │ │ └── make.bat │ │ ├── make.bat │ │ ├── noodle │ │ │ ├── !cons_9x.bat │ │ │ ├── !cons_nt.bat │ │ │ ├── Makefile │ │ │ ├── make.bat │ │ │ ├── noodle.c │ │ │ └── noodle.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.hrb │ │ ├── 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 │ │ ├── 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 │ ├── harib25c │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── a │ │ │ ├── !cons_9x.bat │ │ │ ├── !cons_nt.bat │ │ │ ├── Makefile │ │ │ ├── a.c │ │ │ ├── a.hrb │ │ │ └── make.bat │ │ ├── apilib.h │ │ ├── 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 │ │ │ ├── apilib.lib │ │ │ └── make.bat │ │ ├── app_make.txt │ │ ├── beepdown │ │ │ ├── !cons_9x.bat │ │ │ ├── !cons_nt.bat │ │ │ ├── Makefile │ │ │ ├── beepdown.c │ │ │ ├── beepdown.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 │ │ ├── haribote.rul │ │ ├── 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 │ │ │ ├── ipl10.bin │ │ │ ├── ipl10.nas │ │ │ ├── keyboard.c │ │ │ ├── make.bat │ │ │ ├── memory.c │ │ │ ├── mouse.c │ │ │ ├── mtask.c │ │ │ ├── naskfunc.nas │ │ │ ├── sheet.c │ │ │ ├── timer.c │ │ │ └── window.c │ │ ├── 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 │ │ ├── lines │ │ │ ├── !cons_9x.bat │ │ │ ├── !cons_nt.bat │ │ │ ├── Makefile │ │ │ ├── lines.c │ │ │ ├── lines.hrb │ │ │ └── make.bat │ │ ├── make.bat │ │ ├── noodle │ │ │ ├── !cons_9x.bat │ │ │ ├── !cons_nt.bat │ │ │ ├── Makefile │ │ │ ├── make.bat │ │ │ ├── noodle.c │ │ │ └── noodle.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.hrb │ │ ├── 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 │ │ ├── typeipl │ │ │ ├── !cons_9x.bat │ │ │ ├── !cons_nt.bat │ │ │ ├── Makefile │ │ │ ├── make.bat │ │ │ ├── typeipl.c │ │ │ └── typeipl.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 │ ├── harib25d │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── a │ │ │ ├── !cons_9x.bat │ │ │ ├── !cons_nt.bat │ │ │ ├── Makefile │ │ │ ├── a.c │ │ │ ├── a.hrb │ │ │ └── make.bat │ │ ├── apilib.h │ │ ├── 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 │ │ │ ├── apilib.lib │ │ │ └── make.bat │ │ ├── app_make.txt │ │ ├── beepdown │ │ │ ├── !cons_9x.bat │ │ │ ├── !cons_nt.bat │ │ │ ├── Makefile │ │ │ ├── beepdown.c │ │ │ ├── beepdown.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 │ │ ├── haribote.rul │ │ ├── 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 │ │ │ ├── ipl10.bin │ │ │ ├── ipl10.nas │ │ │ ├── keyboard.c │ │ │ ├── make.bat │ │ │ ├── memory.c │ │ │ ├── mouse.c │ │ │ ├── mtask.c │ │ │ ├── naskfunc.nas │ │ │ ├── sheet.c │ │ │ ├── timer.c │ │ │ └── window.c │ │ ├── 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 │ │ ├── lines │ │ │ ├── !cons_9x.bat │ │ │ ├── !cons_nt.bat │ │ │ ├── Makefile │ │ │ ├── lines.c │ │ │ ├── lines.hrb │ │ │ └── make.bat │ │ ├── make.bat │ │ ├── noodle │ │ │ ├── !cons_9x.bat │ │ │ ├── !cons_nt.bat │ │ │ ├── Makefile │ │ │ ├── make.bat │ │ │ ├── noodle.c │ │ │ └── noodle.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.hrb │ │ ├── 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 │ │ ├── type │ │ │ ├── !cons_9x.bat │ │ │ ├── !cons_nt.bat │ │ │ ├── Makefile │ │ │ ├── make.bat │ │ │ ├── type.c │ │ │ └── type.hrb │ │ ├── typeipl │ │ │ ├── !cons_9x.bat │ │ │ ├── !cons_nt.bat │ │ │ ├── Makefile │ │ │ ├── make.bat │ │ │ ├── typeipl.c │ │ │ └── typeipl.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 │ ├── harib25e │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── a │ │ │ ├── !cons_9x.bat │ │ │ ├── !cons_nt.bat │ │ │ ├── Makefile │ │ │ ├── a.c │ │ │ ├── a.hrb │ │ │ └── make.bat │ │ ├── apilib.h │ │ ├── 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 │ │ │ ├── apilib.lib │ │ │ └── make.bat │ │ ├── app_make.txt │ │ ├── beepdown │ │ │ ├── !cons_9x.bat │ │ │ ├── !cons_nt.bat │ │ │ ├── Makefile │ │ │ ├── beepdown.c │ │ │ ├── beepdown.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 │ │ ├── haribote.rul │ │ ├── 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 │ │ │ ├── ipl10.bin │ │ │ ├── ipl10.nas │ │ │ ├── keyboard.c │ │ │ ├── make.bat │ │ │ ├── memory.c │ │ │ ├── mouse.c │ │ │ ├── mtask.c │ │ │ ├── naskfunc.nas │ │ │ ├── sheet.c │ │ │ ├── timer.c │ │ │ └── window.c │ │ ├── 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 │ │ ├── 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 │ │ ├── nihongo │ │ │ ├── jpn16v00.bin │ │ │ ├── jpn16v00.fnt │ │ │ └── nihongo.fnt │ │ ├── noodle │ │ │ ├── !cons_9x.bat │ │ │ ├── !cons_nt.bat │ │ │ ├── Makefile │ │ │ ├── make.bat │ │ │ ├── noodle.c │ │ │ └── noodle.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.hrb │ │ ├── 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 │ │ ├── type │ │ │ ├── !cons_9x.bat │ │ │ ├── !cons_nt.bat │ │ │ ├── Makefile │ │ │ ├── make.bat │ │ │ ├── type.c │ │ │ └── type.hrb │ │ ├── typeipl │ │ │ ├── !cons_9x.bat │ │ │ ├── !cons_nt.bat │ │ │ ├── Makefile │ │ │ ├── make.bat │ │ │ ├── typeipl.c │ │ │ └── typeipl.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 │ ├── harib25f │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── a │ │ │ ├── !cons_9x.bat │ │ │ ├── !cons_nt.bat │ │ │ ├── Makefile │ │ │ ├── a.c │ │ │ ├── a.hrb │ │ │ └── make.bat │ │ ├── apilib.h │ │ ├── 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 │ │ │ ├── apilib.lib │ │ │ └── make.bat │ │ ├── app_make.txt │ │ ├── beepdown │ │ │ ├── !cons_9x.bat │ │ │ ├── !cons_nt.bat │ │ │ ├── Makefile │ │ │ ├── beepdown.c │ │ │ ├── beepdown.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 │ │ ├── haribote.rul │ │ ├── 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 │ │ │ ├── ipl10.bin │ │ │ ├── ipl10.nas │ │ │ ├── keyboard.c │ │ │ ├── make.bat │ │ │ ├── memory.c │ │ │ ├── mouse.c │ │ │ ├── mtask.c │ │ │ ├── naskfunc.nas │ │ │ ├── sheet.c │ │ │ ├── timer.c │ │ │ └── window.c │ │ ├── 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 │ │ ├── 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 │ │ ├── nihongo │ │ │ ├── jpn16v00.bin │ │ │ ├── jpn16v00.fnt │ │ │ └── nihongo.fnt │ │ ├── noodle │ │ │ ├── !cons_9x.bat │ │ │ ├── !cons_nt.bat │ │ │ ├── Makefile │ │ │ ├── make.bat │ │ │ ├── noodle.c │ │ │ └── noodle.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.hrb │ │ ├── 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 │ │ ├── type │ │ │ ├── !cons_9x.bat │ │ │ ├── !cons_nt.bat │ │ │ ├── Makefile │ │ │ ├── make.bat │ │ │ ├── type.c │ │ │ └── type.hrb │ │ ├── typeipl │ │ │ ├── !cons_9x.bat │ │ │ ├── !cons_nt.bat │ │ │ ├── Makefile │ │ │ ├── make.bat │ │ │ ├── typeipl.c │ │ │ └── typeipl.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 │ └── harib25g │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── a │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── a.c │ │ ├── a.hrb │ │ └── make.bat │ │ ├── apilib.h │ │ ├── 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 │ │ ├── apilib.lib │ │ └── make.bat │ │ ├── app_make.txt │ │ ├── beepdown │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── beepdown.c │ │ ├── beepdown.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 │ │ ├── haribote.rul │ │ ├── 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 │ │ ├── keyboard.c │ │ ├── make.bat │ │ ├── memory.c │ │ ├── mouse.c │ │ ├── mtask.c │ │ ├── naskfunc.nas │ │ ├── sheet.c │ │ ├── timer.c │ │ └── window.c │ │ ├── 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 │ │ ├── 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 │ │ ├── nihongo │ │ ├── jpn16v00.bin │ │ ├── jpn16v00.fnt │ │ └── nihongo.fnt │ │ ├── noodle │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── make.bat │ │ ├── noodle.c │ │ └── noodle.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.hrb │ │ ├── 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 │ │ ├── type │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── make.bat │ │ ├── type.c │ │ └── type.hrb │ │ ├── typeipl │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── make.bat │ │ ├── typeipl.c │ │ └── typeipl.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 ├── 29_day │ ├── harib26a │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── a │ │ │ ├── !cons_9x.bat │ │ │ ├── !cons_nt.bat │ │ │ ├── Makefile │ │ │ ├── a.c │ │ │ ├── a.hrb │ │ │ └── make.bat │ │ ├── apilib.h │ │ ├── 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 │ │ │ ├── apilib.lib │ │ │ └── make.bat │ │ ├── app_make.txt │ │ ├── beepdown │ │ │ ├── !cons_9x.bat │ │ │ ├── !cons_nt.bat │ │ │ ├── Makefile │ │ │ ├── beepdown.c │ │ │ ├── beepdown.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 │ │ ├── haribote.rul │ │ ├── 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 │ │ │ ├── keyboard.c │ │ │ ├── make.bat │ │ │ ├── memory.c │ │ │ ├── mouse.c │ │ │ ├── mtask.c │ │ │ ├── naskfunc.nas │ │ │ ├── sheet.c │ │ │ ├── timer.c │ │ │ └── window.c │ │ ├── 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 │ │ ├── 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 │ │ ├── nihongo │ │ │ ├── jpn16v00.bin │ │ │ ├── jpn16v00.fnt │ │ │ └── nihongo.fnt │ │ ├── noodle │ │ │ ├── !cons_9x.bat │ │ │ ├── !cons_nt.bat │ │ │ ├── Makefile │ │ │ ├── make.bat │ │ │ ├── noodle.c │ │ │ └── noodle.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.hrb │ │ ├── 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 │ │ ├── type │ │ │ ├── !cons_9x.bat │ │ │ ├── !cons_nt.bat │ │ │ ├── Makefile │ │ │ ├── make.bat │ │ │ ├── type.c │ │ │ └── type.hrb │ │ ├── typeipl │ │ │ ├── !cons_9x.bat │ │ │ ├── !cons_nt.bat │ │ │ ├── Makefile │ │ │ ├── make.bat │ │ │ ├── typeipl.c │ │ │ └── typeipl.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 │ ├── harib26b │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── a │ │ │ ├── !cons_9x.bat │ │ │ ├── !cons_nt.bat │ │ │ ├── Makefile │ │ │ ├── a.c │ │ │ ├── a.hrb │ │ │ └── make.bat │ │ ├── apilib.h │ │ ├── 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 │ │ │ ├── apilib.lib │ │ │ └── make.bat │ │ ├── app_make.txt │ │ ├── beepdown │ │ │ ├── !cons_9x.bat │ │ │ ├── !cons_nt.bat │ │ │ ├── Makefile │ │ │ ├── beepdown.c │ │ │ ├── beepdown.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 │ │ ├── haribote.rul │ │ ├── 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 │ │ │ ├── keyboard.c │ │ │ ├── make.bat │ │ │ ├── memory.c │ │ │ ├── mouse.c │ │ │ ├── mtask.c │ │ │ ├── naskfunc.nas │ │ │ ├── sheet.c │ │ │ ├── tek.c │ │ │ ├── timer.c │ │ │ └── window.c │ │ ├── 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 │ │ ├── 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 │ │ ├── nihongo │ │ │ ├── jpn16v00.bin │ │ │ ├── jpn16v00.fnt │ │ │ ├── nihongo.fnt │ │ │ └── nihongo.org │ │ ├── noodle │ │ │ ├── !cons_9x.bat │ │ │ ├── !cons_nt.bat │ │ │ ├── Makefile │ │ │ ├── make.bat │ │ │ ├── noodle.c │ │ │ └── noodle.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.hrb │ │ ├── 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 │ │ ├── type │ │ │ ├── !cons_9x.bat │ │ │ ├── !cons_nt.bat │ │ │ ├── Makefile │ │ │ ├── make.bat │ │ │ ├── type.c │ │ │ └── type.hrb │ │ ├── typeipl │ │ │ ├── !cons_9x.bat │ │ │ ├── !cons_nt.bat │ │ │ ├── Makefile │ │ │ ├── make.bat │ │ │ ├── typeipl.c │ │ │ └── typeipl.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 │ ├── harib26c │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── a │ │ │ ├── !cons_9x.bat │ │ │ ├── !cons_nt.bat │ │ │ ├── Makefile │ │ │ ├── a.c │ │ │ ├── a.hrb │ │ │ └── make.bat │ │ ├── apilib.h │ │ ├── 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 │ │ │ ├── apilib.lib │ │ │ └── make.bat │ │ ├── app_make.txt │ │ ├── beepdown │ │ │ ├── !cons_9x.bat │ │ │ ├── !cons_nt.bat │ │ │ ├── Makefile │ │ │ ├── beepdown.c │ │ │ ├── beepdown.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 │ │ ├── haribote.rul │ │ ├── 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 │ │ │ ├── keyboard.c │ │ │ ├── make.bat │ │ │ ├── memory.c │ │ │ ├── mouse.c │ │ │ ├── mtask.c │ │ │ ├── naskfunc.nas │ │ │ ├── sheet.c │ │ │ ├── tek.c │ │ │ ├── timer.c │ │ │ └── window.c │ │ ├── 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 │ │ ├── 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 │ │ ├── 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 │ │ ├── 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.hrb │ │ ├── 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 │ │ ├── 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 │ ├── harib26d │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── a │ │ │ ├── !cons_9x.bat │ │ │ ├── !cons_nt.bat │ │ │ ├── Makefile │ │ │ ├── a.c │ │ │ ├── a.hrb │ │ │ └── make.bat │ │ ├── apilib.h │ │ ├── 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 │ │ │ ├── apilib.lib │ │ │ └── make.bat │ │ ├── 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 │ │ ├── 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 │ │ ├── haribote.rul │ │ ├── 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 │ │ │ ├── keyboard.c │ │ │ ├── make.bat │ │ │ ├── memory.c │ │ │ ├── mouse.c │ │ │ ├── mtask.c │ │ │ ├── naskfunc.nas │ │ │ ├── sheet.c │ │ │ ├── tek.c │ │ │ ├── timer.c │ │ │ └── window.c │ │ ├── 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 │ │ ├── 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 │ │ ├── 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 │ │ ├── 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.hrb │ │ ├── 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 │ │ ├── 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 │ └── harib26e │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── a │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── a.c │ │ ├── a.hrb │ │ └── make.bat │ │ ├── apilib.h │ │ ├── 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 │ │ ├── apilib.lib │ │ └── make.bat │ │ ├── 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 │ │ ├── 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 │ │ ├── haribote.rul │ │ ├── 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 │ │ ├── keyboard.c │ │ ├── make.bat │ │ ├── memory.c │ │ ├── mouse.c │ │ ├── mtask.c │ │ ├── naskfunc.nas │ │ ├── sheet.c │ │ ├── tek.c │ │ ├── timer.c │ │ └── window.c │ │ ├── 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 │ │ ├── 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 │ │ ├── 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 │ │ ├── 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.hrb │ │ ├── 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 │ │ ├── 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 ├── 30_day │ ├── harib27a │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── a │ │ │ ├── !cons_9x.bat │ │ │ ├── !cons_nt.bat │ │ │ ├── Makefile │ │ │ ├── a.c │ │ │ ├── a.hrb │ │ │ └── make.bat │ │ ├── apilib.h │ │ ├── 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 │ │ │ ├── apilib.lib │ │ │ └── make.bat │ │ ├── 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 │ │ ├── haribote.rul │ │ ├── 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 │ │ │ ├── keyboard.c │ │ │ ├── make.bat │ │ │ ├── memory.c │ │ │ ├── mouse.c │ │ │ ├── mtask.c │ │ │ ├── naskfunc.nas │ │ │ ├── sheet.c │ │ │ ├── tek.c │ │ │ ├── timer.c │ │ │ └── window.c │ │ ├── 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 │ │ ├── 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 │ │ ├── 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 │ │ ├── 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.hrb │ │ ├── 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 │ │ ├── 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 │ ├── harib27b │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── a │ │ │ ├── !cons_9x.bat │ │ │ ├── !cons_nt.bat │ │ │ ├── Makefile │ │ │ ├── a.c │ │ │ ├── a.hrb │ │ │ └── make.bat │ │ ├── apilib.h │ │ ├── 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 │ │ │ ├── apilib.lib │ │ │ └── make.bat │ │ ├── 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 │ │ ├── haribote.rul │ │ ├── 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 │ │ │ ├── keyboard.c │ │ │ ├── make.bat │ │ │ ├── memory.c │ │ │ ├── mouse.c │ │ │ ├── mtask.c │ │ │ ├── naskfunc.nas │ │ │ ├── sheet.c │ │ │ ├── tek.c │ │ │ ├── timer.c │ │ │ └── window.c │ │ ├── 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 │ │ ├── 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 │ │ ├── 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 │ │ ├── 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.hrb │ │ ├── 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 │ ├── harib27c │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── a │ │ │ ├── !cons_9x.bat │ │ │ ├── !cons_nt.bat │ │ │ ├── Makefile │ │ │ ├── a.c │ │ │ ├── a.hrb │ │ │ └── make.bat │ │ ├── apilib.h │ │ ├── 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 │ │ │ ├── apilib.lib │ │ │ └── make.bat │ │ ├── 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 │ │ ├── haribote.rul │ │ ├── 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 │ │ │ ├── keyboard.c │ │ │ ├── make.bat │ │ │ ├── memory.c │ │ │ ├── mouse.c │ │ │ ├── mtask.c │ │ │ ├── naskfunc.nas │ │ │ ├── sheet.c │ │ │ ├── tek.c │ │ │ ├── timer.c │ │ │ └── window.c │ │ ├── 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 │ │ ├── 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 │ │ ├── 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.hrb │ │ ├── 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 │ ├── harib27d │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── a │ │ │ ├── !cons_9x.bat │ │ │ ├── !cons_nt.bat │ │ │ ├── Makefile │ │ │ ├── a.c │ │ │ ├── a.hrb │ │ │ └── make.bat │ │ ├── apilib.h │ │ ├── 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 │ │ │ ├── apilib.lib │ │ │ └── make.bat │ │ ├── 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.rul │ │ ├── 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 │ │ │ ├── keyboard.c │ │ │ ├── make.bat │ │ │ ├── memory.c │ │ │ ├── mouse.c │ │ │ ├── mtask.c │ │ │ ├── naskfunc.nas │ │ │ ├── sheet.c │ │ │ ├── tek.c │ │ │ ├── timer.c │ │ │ └── window.c │ │ ├── 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 │ │ ├── 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 │ │ ├── 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.hrb │ │ ├── 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 │ ├── harib27e │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── a │ │ │ ├── !cons_9x.bat │ │ │ ├── !cons_nt.bat │ │ │ ├── Makefile │ │ │ ├── a.c │ │ │ ├── a.hrb │ │ │ └── make.bat │ │ ├── apilib.h │ │ ├── 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 │ │ │ ├── apilib.lib │ │ │ └── make.bat │ │ ├── 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.rul │ │ ├── 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 │ │ │ ├── ipl09.bin │ │ │ ├── ipl09.nas │ │ │ ├── keyboard.c │ │ │ ├── make.bat │ │ │ ├── memory.c │ │ │ ├── mouse.c │ │ │ ├── mtask.c │ │ │ ├── naskfunc.nas │ │ │ ├── sheet.c │ │ │ ├── tek.c │ │ │ ├── timer.c │ │ │ └── window.c │ │ ├── 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 │ │ ├── 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.hrb │ │ ├── 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 │ └── harib27f │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── a │ │ ├── !cons_9x.bat │ │ ├── !cons_nt.bat │ │ ├── Makefile │ │ ├── a.c │ │ ├── a.hrb │ │ └── make.bat │ │ ├── apilib.h │ │ ├── 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 │ │ ├── apilib.lib │ │ └── make.bat │ │ ├── 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.img │ │ ├── haribote.iso │ │ ├── haribote.rul │ │ ├── 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 │ │ ├── ipl09.bin │ │ ├── ipl09.nas │ │ ├── keyboard.c │ │ ├── make.bat │ │ ├── memory.c │ │ ├── mouse.c │ │ ├── mtask.c │ │ ├── naskfunc.nas │ │ ├── sheet.c │ │ ├── tek.c │ │ ├── timer.c │ │ └── window.c │ │ ├── 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 │ │ ├── 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.hrb │ │ ├── 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 └── license.txt ├── readme.txt └── tolset ├── GPL.txt ├── LGPL.txt ├── license.txt ├── 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 ├── aska.exe ├── bim2bin.exe ├── bim2hrb.exe ├── bin2obj.exe ├── cc1.exe ├── com_mak.txt ├── comcom.exe ├── cpp0.exe ├── doscmd.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 ├── errno.h ├── float.h ├── golibc.lib ├── haribote.rul ├── harilibc.lib ├── limits.h ├── math.h ├── setjmp.h ├── stdarg.h ├── stddef.h ├── stdio.h └── string.h ├── 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 /Autorun.inf: -------------------------------------------------------------------------------- 1 | [AUTORUN] 2 | open=EXPLORER \ 3 | -------------------------------------------------------------------------------- /omake/osask/make47/src47/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /omake/osask/make47/src47/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /omake/tolsrc/aksa1a/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /omake/tolsrc/aksa1a/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /omake/tolsrc/bim2bi4w/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /omake/tolsrc/bim2bi4w/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /omake/tolsrc/bim2bi4w/dtk1s0c/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /omake/tolsrc/bim2bi4w/dtk1s0c/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /omake/tolsrc/bim2bi4w/dtk1s0s/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /omake/tolsrc/bim2bi4w/dtk1s0s/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /omake/tolsrc/bim2bi4w/dtk2s0f/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /omake/tolsrc/bim2bi4w/dtk2s0f/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /omake/tolsrc/bim2bi4w/dtk2s0r/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /omake/tolsrc/bim2bi4w/dtk2s0r/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /omake/tolsrc/bim2bi4w/dtk5f0d/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /omake/tolsrc/bim2bi4w/dtk5f0d/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /omake/tolsrc/bim2bi4w/dtk5f0r/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /omake/tolsrc/bim2bi4w/dtk5f0r/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /omake/tolsrc/bim2bi4w/dtk5s0d/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /omake/tolsrc/bim2bi4w/dtk5s0d/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /omake/tolsrc/bim2bi4w/dtk5s0r/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /omake/tolsrc/bim2bi4w/dtk5s0r/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /omake/tolsrc/bim2hrb/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /omake/tolsrc/bim2hrb/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /omake/tolsrc/bin2obj0/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /omake/tolsrc/bin2obj0/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /omake/tolsrc/doscmd0a/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /omake/tolsrc/doscmd0a/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /omake/tolsrc/edimg0j/!cons.bat: -------------------------------------------------------------------------------- 1 | %ComSpec% -------------------------------------------------------------------------------- /omake/tolsrc/go_0023s/w32clibc/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /omake/tolsrc/go_0023s/w32clibc/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /omake/tolsrc/hrblib0a/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /omake/tolsrc/hrblib0a/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /omake/tolsrc/makefont/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /omake/tolsrc/makefont/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /omake/tolsrc/obj2bi4d/!cons.bat: -------------------------------------------------------------------------------- 1 | %ComSpec% -------------------------------------------------------------------------------- /omake/tolsrc/sartol0j/src_sar/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /omake/tolsrc/sartol0j/src_sar/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /omake/tolsrc/sartol0j/src_wce/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /omake/tolsrc/sartol0j/src_wce/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/01_day/helloos0/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/01_day/helloos0/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/01_day/helloos1/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/01_day/helloos1/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/01_day/helloos2/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/01_day/helloos2/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/02_day/helloos3/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/02_day/helloos3/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/02_day/helloos4/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/02_day/helloos4/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/02_day/helloos5/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/02_day/helloos5/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/03_day/harib00a/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/03_day/harib00a/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/03_day/harib00b/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/03_day/harib00b/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/03_day/harib00c/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/03_day/harib00c/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/03_day/harib00d/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/03_day/harib00d/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/03_day/harib00e/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/03_day/harib00e/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/03_day/harib00f/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/03_day/harib00f/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/03_day/harib00g/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/03_day/harib00g/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/03_day/harib00h/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/03_day/harib00h/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/03_day/harib00i/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/03_day/harib00i/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/03_day/harib00j/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/03_day/harib00j/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/04_day/harib01a/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/04_day/harib01a/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/04_day/harib01b/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/04_day/harib01b/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/04_day/harib01c/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/04_day/harib01c/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/04_day/harib01d/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/04_day/harib01d/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/04_day/harib01e/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/04_day/harib01e/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/04_day/harib01f/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/04_day/harib01f/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/04_day/harib01g/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/04_day/harib01g/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/04_day/harib01h/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/04_day/harib01h/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/05_day/harib02a/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/05_day/harib02a/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/05_day/harib02b/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/05_day/harib02b/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/05_day/harib02c/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/05_day/harib02c/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/05_day/harib02d/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/05_day/harib02d/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/05_day/harib02e/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/05_day/harib02e/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/05_day/harib02f/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/05_day/harib02f/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/05_day/harib02g/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/05_day/harib02g/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/05_day/harib02h/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/05_day/harib02h/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/05_day/harib02i/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/05_day/harib02i/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/06_day/harib03a/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/06_day/harib03a/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/06_day/harib03b/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/06_day/harib03b/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/06_day/harib03c/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/06_day/harib03c/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/06_day/harib03d/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/06_day/harib03d/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/06_day/harib03e/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/06_day/harib03e/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/07_day/harib04a/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/07_day/harib04a/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/07_day/harib04b/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/07_day/harib04b/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/07_day/harib04c/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/07_day/harib04c/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/07_day/harib04d/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/07_day/harib04d/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/07_day/harib04e/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/07_day/harib04e/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/07_day/harib04f/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/07_day/harib04f/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/07_day/harib04g/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/07_day/harib04g/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/08_day/harib05a/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/08_day/harib05a/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/08_day/harib05b/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/08_day/harib05b/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/08_day/harib05c/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/08_day/harib05c/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/08_day/harib05d/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/08_day/harib05d/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/09_day/harib06a/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/09_day/harib06a/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/09_day/harib06b/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/09_day/harib06b/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/09_day/harib06c/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/09_day/harib06c/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/09_day/harib06d/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/09_day/harib06d/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/10_day/harib07a/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/10_day/harib07a/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/10_day/harib07b/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/10_day/harib07b/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/10_day/harib07c/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/10_day/harib07c/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/10_day/harib07d/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/10_day/harib07d/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/11_day/harib08a/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/11_day/harib08a/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/11_day/harib08b/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/11_day/harib08b/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/11_day/harib08c/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/11_day/harib08c/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/11_day/harib08d/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/11_day/harib08d/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/11_day/harib08e/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/11_day/harib08e/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/11_day/harib08f/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/11_day/harib08f/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/11_day/harib08g/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/11_day/harib08g/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/11_day/harib08h/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/11_day/harib08h/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/12_day/harib09a/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/12_day/harib09a/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/12_day/harib09b/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/12_day/harib09b/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/12_day/harib09c/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/12_day/harib09c/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/12_day/harib09d/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/12_day/harib09d/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/12_day/harib09e/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/12_day/harib09e/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/12_day/harib09f/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/12_day/harib09f/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/12_day/harib09g/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/12_day/harib09g/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/13_day/harib10a/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/13_day/harib10a/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/13_day/harib10b/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/13_day/harib10b/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/13_day/harib10c/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/13_day/harib10c/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/13_day/harib10d/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/13_day/harib10d/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/13_day/harib10e/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/13_day/harib10e/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/13_day/harib10f/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/13_day/harib10f/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/13_day/harib10g/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/13_day/harib10g/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/13_day/harib10h/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/13_day/harib10h/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/13_day/harib10i/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/13_day/harib10i/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/14_day/harib11a/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/14_day/harib11a/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/14_day/harib11b/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/14_day/harib11b/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/14_day/harib11c/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/14_day/harib11c/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/14_day/harib11d/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/14_day/harib11d/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/14_day/harib11e/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/14_day/harib11e/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/14_day/harib11f/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/14_day/harib11f/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/14_day/harib11g/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/14_day/harib11g/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/14_day/harib11h/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/14_day/harib11h/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/14_day/harib11i/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/14_day/harib11i/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/15_day/harib12a/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/15_day/harib12a/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/15_day/harib12b/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/15_day/harib12b/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/15_day/harib12c/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/15_day/harib12c/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/15_day/harib12d/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/15_day/harib12d/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/15_day/harib12e/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/15_day/harib12e/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/15_day/harib12f/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/15_day/harib12f/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/15_day/harib12g/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/15_day/harib12g/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/16_day/harib13a/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/16_day/harib13a/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/16_day/harib13b/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/16_day/harib13b/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/16_day/harib13c/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/16_day/harib13c/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/16_day/harib13d/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/16_day/harib13d/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/16_day/harib13e/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/16_day/harib13e/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/17_day/harib14a/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/17_day/harib14a/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/17_day/harib14b/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/17_day/harib14b/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/17_day/harib14c/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/17_day/harib14c/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/17_day/harib14d/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/17_day/harib14d/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/17_day/harib14e/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/17_day/harib14e/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/17_day/harib14f/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/17_day/harib14f/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/17_day/harib14g/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/17_day/harib14g/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/18_day/harib15a/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/18_day/harib15a/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/18_day/harib15b/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/18_day/harib15b/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/18_day/harib15c/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/18_day/harib15c/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/18_day/harib15d/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/18_day/harib15d/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/18_day/harib15e/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/18_day/harib15e/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/18_day/harib15f/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/18_day/harib15f/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/18_day/harib15g/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/18_day/harib15g/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/19_day/harib16a/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/19_day/harib16a/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/19_day/harib16b/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/19_day/harib16b/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/19_day/harib16c/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/19_day/harib16c/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/19_day/harib16d/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/19_day/harib16d/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/19_day/harib16e/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/19_day/harib16e/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/20_day/harib17a/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/20_day/harib17a/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/20_day/harib17b/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/20_day/harib17b/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/20_day/harib17c/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/20_day/harib17c/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/20_day/harib17d/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/20_day/harib17d/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/20_day/harib17e/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/20_day/harib17e/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/20_day/harib17f/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/20_day/harib17f/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/20_day/harib17g/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/20_day/harib17g/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/20_day/harib17h/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/20_day/harib17h/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/21_day/harib18a/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/21_day/harib18a/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/21_day/harib18b/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/21_day/harib18b/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/21_day/harib18c/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/21_day/harib18c/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/21_day/harib18d/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/21_day/harib18d/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/21_day/harib18e/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/21_day/harib18e/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/21_day/harib18f/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/21_day/harib18f/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/21_day/harib18g/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/21_day/harib18g/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/22_day/harib19a/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/22_day/harib19a/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/22_day/harib19b/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/22_day/harib19b/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/22_day/harib19c/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/22_day/harib19c/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/22_day/harib19d/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/22_day/harib19d/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/22_day/harib19e/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/22_day/harib19e/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/22_day/harib19f/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/22_day/harib19f/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/22_day/harib19g/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/22_day/harib19g/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/23_day/harib20a/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/23_day/harib20a/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/23_day/harib20b/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/23_day/harib20b/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/23_day/harib20c/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/23_day/harib20c/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/23_day/harib20d/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/23_day/harib20d/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/23_day/harib20e/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/23_day/harib20e/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/23_day/harib20f/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/23_day/harib20f/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/23_day/harib20g/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/23_day/harib20g/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/23_day/harib20h/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/23_day/harib20h/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/24_day/harib21a/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/24_day/harib21a/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/24_day/harib21b/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/24_day/harib21b/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/24_day/harib21c/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/24_day/harib21c/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/24_day/harib21d/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/24_day/harib21d/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/24_day/harib21e/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/24_day/harib21e/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/24_day/harib21f/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/24_day/harib21f/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/24_day/harib21g/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/24_day/harib21g/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/24_day/harib21h/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/24_day/harib21h/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/25_day/harib22a/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/25_day/harib22a/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/25_day/harib22b/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/25_day/harib22b/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/25_day/harib22c/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/25_day/harib22c/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/25_day/harib22d/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/25_day/harib22d/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/25_day/harib22e/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/25_day/harib22e/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/25_day/harib22f/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/25_day/harib22f/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/25_day/harib22g/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/25_day/harib22g/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/25_day/harib22h/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/25_day/harib22h/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/25_day/harib22i/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/25_day/harib22i/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/25_day/harib22j/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/25_day/harib22j/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/26_day/harib23a/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/26_day/harib23a/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/26_day/harib23b/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/26_day/harib23b/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/26_day/harib23c/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/26_day/harib23c/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/26_day/harib23d/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/26_day/harib23d/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/26_day/harib23e/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/26_day/harib23e/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/26_day/harib23f/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/26_day/harib23f/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/26_day/harib23g/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/26_day/harib23g/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/26_day/harib23h/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/26_day/harib23h/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/26_day/harib23i/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/26_day/harib23i/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/26_day/harib23j/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/26_day/harib23j/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/27_day/harib24a/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/27_day/harib24a/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/27_day/harib24b/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/27_day/harib24b/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/27_day/harib24c/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/27_day/harib24c/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/27_day/harib24d/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/27_day/harib24d/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/27_day/harib24e/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/27_day/harib24e/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/27_day/harib24f/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/27_day/harib24f/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/27_day/harib24g/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/27_day/harib24g/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/27_day/harib24g/a/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/27_day/harib24g/a/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/27_day/harib24g/apilib/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/27_day/harib24g/apilib/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/27_day/harib24g/beepdown/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/27_day/harib24g/beepdown/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/27_day/harib24g/color/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/27_day/harib24g/color/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/27_day/harib24g/color2/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/27_day/harib24g/color2/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/27_day/harib24g/haribote/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/27_day/harib24g/haribote/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/27_day/harib24g/hello3/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/27_day/harib24g/hello3/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/27_day/harib24g/hello4/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/27_day/harib24g/hello4/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/27_day/harib24g/hello5/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/27_day/harib24g/hello5/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/27_day/harib24g/lines/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/27_day/harib24g/lines/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/27_day/harib24g/noodle/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/27_day/harib24g/noodle/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/27_day/harib24g/star1/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/27_day/harib24g/star1/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/27_day/harib24g/stars/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/27_day/harib24g/stars/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/27_day/harib24g/stars2/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/27_day/harib24g/stars2/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/27_day/harib24g/walk/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/27_day/harib24g/walk/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/27_day/harib24g/winhelo/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/27_day/harib24g/winhelo/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/27_day/harib24g/winhelo2/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/27_day/harib24g/winhelo2/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/27_day/harib24g/winhelo3/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/27_day/harib24g/winhelo3/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25a/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25a/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25a/a/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25a/a/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25a/apilib/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25a/apilib/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25a/beepdown/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25a/beepdown/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25a/color/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25a/color/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25a/color2/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25a/color2/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25a/haribote/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25a/haribote/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25a/hello3/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25a/hello3/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25a/hello4/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25a/hello4/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25a/hello5/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25a/hello5/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25a/lines/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25a/lines/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25a/noodle/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25a/noodle/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25a/sosu/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25a/sosu/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25a/sosu2/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25a/sosu2/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25a/sosu3/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25a/sosu3/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25a/star1/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25a/star1/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25a/stars/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25a/stars/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25a/stars2/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25a/stars2/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25a/walk/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25a/walk/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25a/winhelo/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25a/winhelo/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25a/winhelo2/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25a/winhelo2/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25a/winhelo3/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25a/winhelo3/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25b/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25b/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25b/a/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25b/a/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25b/apilib/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25b/apilib/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25b/beepdown/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25b/beepdown/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25b/color/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25b/color/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25b/color2/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25b/color2/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25b/haribote/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25b/haribote/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25b/hello3/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25b/hello3/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25b/hello4/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25b/hello4/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25b/hello5/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25b/hello5/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25b/lines/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25b/lines/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25b/noodle/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25b/noodle/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25b/sosu/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25b/sosu/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25b/sosu2/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25b/sosu2/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25b/sosu3/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25b/sosu3/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25b/star1/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25b/star1/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25b/stars/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25b/stars/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25b/stars2/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25b/stars2/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25b/walk/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25b/walk/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25b/winhelo/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25b/winhelo/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25b/winhelo2/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25b/winhelo2/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25b/winhelo3/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25b/winhelo3/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25c/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25c/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25c/a/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25c/a/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25c/apilib/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25c/apilib/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25c/beepdown/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25c/beepdown/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25c/color/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25c/color/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25c/color2/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25c/color2/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25c/haribote/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25c/haribote/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25c/hello3/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25c/hello3/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25c/hello4/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25c/hello4/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25c/hello5/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25c/hello5/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25c/lines/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25c/lines/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25c/noodle/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25c/noodle/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25c/sosu/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25c/sosu/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25c/sosu2/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25c/sosu2/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25c/sosu3/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25c/sosu3/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25c/star1/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25c/star1/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25c/stars/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25c/stars/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25c/stars2/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25c/stars2/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25c/typeipl/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25c/typeipl/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25c/walk/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25c/walk/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25c/winhelo/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25c/winhelo/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25c/winhelo2/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25c/winhelo2/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25c/winhelo3/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25c/winhelo3/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25d/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25d/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25d/a/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25d/a/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25d/apilib/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25d/apilib/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25d/beepdown/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25d/beepdown/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25d/color/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25d/color/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25d/color2/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25d/color2/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25d/haribote/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25d/haribote/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25d/hello3/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25d/hello3/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25d/hello4/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25d/hello4/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25d/hello5/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25d/hello5/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25d/lines/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25d/lines/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25d/noodle/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25d/noodle/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25d/sosu/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25d/sosu/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25d/sosu2/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25d/sosu2/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25d/sosu3/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25d/sosu3/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25d/star1/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25d/star1/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25d/stars/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25d/stars/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25d/stars2/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25d/stars2/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25d/type/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25d/type/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25d/typeipl/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25d/typeipl/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25d/walk/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25d/walk/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25d/winhelo/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25d/winhelo/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25d/winhelo2/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25d/winhelo2/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25d/winhelo3/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25d/winhelo3/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25e/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25e/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25e/a/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25e/a/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25e/apilib/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25e/apilib/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25e/beepdown/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25e/beepdown/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25e/color/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25e/color/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25e/color2/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25e/color2/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25e/haribote/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25e/haribote/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25e/hello3/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25e/hello3/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25e/hello4/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25e/hello4/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25e/hello5/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25e/hello5/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25e/iroha/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25e/iroha/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25e/lines/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25e/lines/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25e/noodle/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25e/noodle/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25e/sosu/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25e/sosu/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25e/sosu2/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25e/sosu2/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25e/sosu3/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25e/sosu3/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25e/star1/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25e/star1/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25e/stars/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25e/stars/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25e/stars2/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25e/stars2/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25e/type/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25e/type/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25e/typeipl/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25e/typeipl/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25e/walk/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25e/walk/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25e/winhelo/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25e/winhelo/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25e/winhelo2/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25e/winhelo2/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25e/winhelo3/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25e/winhelo3/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25f/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25f/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25f/a/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25f/a/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25f/apilib/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25f/apilib/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25f/beepdown/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25f/beepdown/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25f/color/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25f/color/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25f/color2/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25f/color2/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25f/haribote/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25f/haribote/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25f/hello3/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25f/hello3/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25f/hello4/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25f/hello4/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25f/hello5/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25f/hello5/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25f/iroha/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25f/iroha/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25f/lines/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25f/lines/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25f/noodle/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25f/noodle/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25f/sosu/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25f/sosu/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25f/sosu2/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25f/sosu2/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25f/sosu3/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25f/sosu3/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25f/star1/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25f/star1/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25f/stars/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25f/stars/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25f/stars2/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25f/stars2/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25f/type/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25f/type/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25f/typeipl/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25f/typeipl/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25f/walk/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25f/walk/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25f/winhelo/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25f/winhelo/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25f/winhelo2/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25f/winhelo2/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25f/winhelo3/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25f/winhelo3/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25g/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25g/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25g/a/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25g/a/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25g/apilib/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25g/apilib/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25g/beepdown/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25g/beepdown/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25g/chklang/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25g/chklang/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25g/color/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25g/color/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25g/color2/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25g/color2/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25g/haribote/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25g/haribote/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25g/hello3/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25g/hello3/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25g/hello4/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25g/hello4/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25g/hello5/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25g/hello5/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25g/iroha/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25g/iroha/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25g/lines/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25g/lines/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25g/noodle/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25g/noodle/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25g/sosu/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25g/sosu/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25g/sosu2/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25g/sosu2/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25g/sosu3/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25g/sosu3/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25g/star1/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25g/star1/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25g/stars/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25g/stars/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25g/stars2/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25g/stars2/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25g/type/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25g/type/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25g/typeipl/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25g/typeipl/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25g/walk/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25g/walk/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25g/winhelo/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25g/winhelo/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25g/winhelo2/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25g/winhelo2/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/28_day/harib25g/winhelo3/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/28_day/harib25g/winhelo3/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/29_day/harib26a/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/29_day/harib26a/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/29_day/harib26a/a/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/29_day/harib26a/a/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/29_day/harib26a/apilib/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/29_day/harib26a/apilib/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/29_day/harib26a/beepdown/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/29_day/harib26a/beepdown/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/29_day/harib26a/chklang/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/29_day/harib26a/chklang/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/29_day/harib26a/color/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/29_day/harib26a/color/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/29_day/harib26a/color2/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/29_day/harib26a/color2/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/29_day/harib26a/haribote/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/29_day/harib26a/haribote/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/29_day/harib26a/hello3/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/29_day/harib26a/hello3/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/29_day/harib26a/hello4/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/29_day/harib26a/hello4/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/29_day/harib26a/hello5/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/29_day/harib26a/hello5/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/29_day/harib26a/iroha/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/29_day/harib26a/iroha/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/29_day/harib26a/lines/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/29_day/harib26a/lines/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/29_day/harib26a/noodle/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/29_day/harib26a/noodle/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/29_day/harib26a/sosu/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/29_day/harib26a/sosu/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/29_day/harib26a/sosu2/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/29_day/harib26a/sosu2/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/29_day/harib26a/sosu3/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/29_day/harib26a/sosu3/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/29_day/harib26a/star1/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/29_day/harib26a/star1/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/29_day/harib26a/stars/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/29_day/harib26a/stars/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/29_day/harib26a/stars2/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/29_day/harib26a/stars2/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/29_day/harib26a/type/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/29_day/harib26a/type/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/29_day/harib26a/typeipl/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/29_day/harib26a/typeipl/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/29_day/harib26a/walk/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/29_day/harib26a/walk/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/29_day/harib26a/winhelo/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/29_day/harib26a/winhelo/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/29_day/harib26a/winhelo2/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/29_day/harib26a/winhelo2/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/29_day/harib26a/winhelo3/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/29_day/harib26a/winhelo3/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/29_day/harib26b/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/29_day/harib26b/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/29_day/harib26b/a/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/29_day/harib26b/a/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/29_day/harib26b/apilib/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/29_day/harib26b/apilib/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/29_day/harib26b/beepdown/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/29_day/harib26b/beepdown/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/29_day/harib26b/chklang/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/29_day/harib26b/chklang/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/29_day/harib26b/color/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/29_day/harib26b/color/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/29_day/harib26b/color2/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/29_day/harib26b/color2/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/29_day/harib26b/haribote/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/29_day/harib26b/haribote/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/29_day/harib26b/hello3/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/29_day/harib26b/hello3/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/29_day/harib26b/hello4/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/29_day/harib26b/hello4/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/29_day/harib26b/hello5/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/29_day/harib26b/hello5/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/29_day/harib26b/iroha/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/29_day/harib26b/iroha/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/29_day/harib26b/lines/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/29_day/harib26b/lines/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/29_day/harib26b/noodle/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/29_day/harib26b/noodle/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/29_day/harib26b/sosu/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/29_day/harib26b/sosu/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/29_day/harib26b/sosu2/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/29_day/harib26b/sosu2/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/29_day/harib26b/sosu3/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/29_day/harib26b/sosu3/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/29_day/harib26b/star1/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/29_day/harib26b/star1/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/29_day/harib26b/stars/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/29_day/harib26b/stars/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/29_day/harib26b/stars2/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/29_day/harib26b/stars2/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/29_day/harib26b/type/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/29_day/harib26b/type/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/29_day/harib26b/typeipl/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/29_day/harib26b/typeipl/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/29_day/harib26b/walk/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/29_day/harib26b/walk/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/29_day/harib26b/winhelo/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/29_day/harib26b/winhelo/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/29_day/harib26b/winhelo2/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/29_day/harib26b/winhelo2/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/29_day/harib26b/winhelo3/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/29_day/harib26b/winhelo3/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/29_day/harib26c/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/29_day/harib26c/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/29_day/harib26c/a/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/29_day/harib26c/a/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/29_day/harib26c/apilib/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/29_day/harib26c/apilib/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/29_day/harib26c/beepdown/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/29_day/harib26c/beepdown/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/29_day/harib26c/chklang/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/29_day/harib26c/chklang/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/29_day/harib26c/color/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/29_day/harib26c/color/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/29_day/harib26c/color2/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/29_day/harib26c/color2/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/29_day/harib26c/haribote/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/29_day/harib26c/haribote/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/29_day/harib26c/hello3/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/29_day/harib26c/hello3/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/29_day/harib26c/hello4/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/29_day/harib26c/hello4/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/29_day/harib26c/hello5/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/29_day/harib26c/hello5/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/29_day/harib26c/iroha/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/29_day/harib26c/iroha/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/29_day/harib26c/lines/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/29_day/harib26c/lines/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/29_day/harib26c/noodle/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/29_day/harib26c/noodle/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/29_day/harib26c/notrec/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/29_day/harib26c/notrec/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/29_day/harib26c/sosu/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/29_day/harib26c/sosu/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/29_day/harib26c/sosu2/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/29_day/harib26c/sosu2/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/29_day/harib26c/sosu3/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/29_day/harib26c/sosu3/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/29_day/harib26c/star1/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/29_day/harib26c/star1/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/29_day/harib26c/stars/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/29_day/harib26c/stars/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/29_day/harib26c/stars2/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/29_day/harib26c/stars2/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/29_day/harib26c/type/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/29_day/harib26c/type/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/29_day/harib26c/walk/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/29_day/harib26c/walk/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/29_day/harib26c/winhelo/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/29_day/harib26c/winhelo/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/29_day/harib26c/winhelo2/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/29_day/harib26c/winhelo2/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/29_day/harib26c/winhelo3/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/29_day/harib26c/winhelo3/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/29_day/harib26d/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/29_day/harib26d/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/29_day/harib26d/a/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/29_day/harib26d/a/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/29_day/harib26d/apilib/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/29_day/harib26d/apilib/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/29_day/harib26d/bball/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/29_day/harib26d/bball/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/29_day/harib26d/beepdown/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/29_day/harib26d/beepdown/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/29_day/harib26d/chklang/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/29_day/harib26d/chklang/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/29_day/harib26d/color/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/29_day/harib26d/color/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/29_day/harib26d/color2/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/29_day/harib26d/color2/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/29_day/harib26d/haribote/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/29_day/harib26d/haribote/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/29_day/harib26d/hello3/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/29_day/harib26d/hello3/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/29_day/harib26d/hello4/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/29_day/harib26d/hello4/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/29_day/harib26d/hello5/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/29_day/harib26d/hello5/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/29_day/harib26d/iroha/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/29_day/harib26d/iroha/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/29_day/harib26d/lines/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/29_day/harib26d/lines/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/29_day/harib26d/noodle/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/29_day/harib26d/noodle/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/29_day/harib26d/notrec/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/29_day/harib26d/notrec/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/29_day/harib26d/sosu/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/29_day/harib26d/sosu/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/29_day/harib26d/sosu2/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/29_day/harib26d/sosu2/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/29_day/harib26d/sosu3/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/29_day/harib26d/sosu3/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/29_day/harib26d/star1/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/29_day/harib26d/star1/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/29_day/harib26d/stars/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/29_day/harib26d/stars/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/29_day/harib26d/stars2/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/29_day/harib26d/stars2/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/29_day/harib26d/type/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/29_day/harib26d/type/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/29_day/harib26d/walk/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/29_day/harib26d/walk/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/29_day/harib26d/winhelo/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/29_day/harib26d/winhelo/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/29_day/harib26d/winhelo2/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/29_day/harib26d/winhelo2/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/29_day/harib26d/winhelo3/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/29_day/harib26d/winhelo3/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/29_day/harib26e/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/29_day/harib26e/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/29_day/harib26e/a/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/29_day/harib26e/a/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/29_day/harib26e/apilib/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/29_day/harib26e/apilib/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/29_day/harib26e/bball/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/29_day/harib26e/bball/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/29_day/harib26e/beepdown/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/29_day/harib26e/beepdown/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/29_day/harib26e/chklang/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/29_day/harib26e/chklang/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/29_day/harib26e/color/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/29_day/harib26e/color/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/29_day/harib26e/color2/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/29_day/harib26e/color2/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/29_day/harib26e/haribote/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/29_day/harib26e/haribote/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/29_day/harib26e/hello3/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/29_day/harib26e/hello3/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/29_day/harib26e/hello4/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/29_day/harib26e/hello4/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/29_day/harib26e/hello5/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/29_day/harib26e/hello5/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/29_day/harib26e/invader/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/29_day/harib26e/invader/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/29_day/harib26e/iroha/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/29_day/harib26e/iroha/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/29_day/harib26e/lines/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/29_day/harib26e/lines/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/29_day/harib26e/noodle/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/29_day/harib26e/noodle/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/29_day/harib26e/notrec/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/29_day/harib26e/notrec/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/29_day/harib26e/sosu/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/29_day/harib26e/sosu/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/29_day/harib26e/sosu2/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/29_day/harib26e/sosu2/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/29_day/harib26e/sosu3/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/29_day/harib26e/sosu3/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/29_day/harib26e/star1/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/29_day/harib26e/star1/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/29_day/harib26e/stars/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/29_day/harib26e/stars/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/29_day/harib26e/stars2/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/29_day/harib26e/stars2/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/29_day/harib26e/type/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/29_day/harib26e/type/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/29_day/harib26e/walk/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/29_day/harib26e/walk/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/29_day/harib26e/winhelo/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/29_day/harib26e/winhelo/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/29_day/harib26e/winhelo2/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/29_day/harib26e/winhelo2/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/29_day/harib26e/winhelo3/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/29_day/harib26e/winhelo3/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/30_day/harib27a/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/30_day/harib27a/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/30_day/harib27a/a/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/30_day/harib27a/a/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/30_day/harib27a/apilib/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/30_day/harib27a/apilib/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/30_day/harib27a/bball/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/30_day/harib27a/bball/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/30_day/harib27a/beepdown/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/30_day/harib27a/beepdown/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/30_day/harib27a/calc/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/30_day/harib27a/calc/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/30_day/harib27a/chklang/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/30_day/harib27a/chklang/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/30_day/harib27a/color/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/30_day/harib27a/color/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/30_day/harib27a/color2/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/30_day/harib27a/color2/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/30_day/harib27a/haribote/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/30_day/harib27a/haribote/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/30_day/harib27a/hello3/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/30_day/harib27a/hello3/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/30_day/harib27a/hello4/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/30_day/harib27a/hello4/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/30_day/harib27a/hello5/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/30_day/harib27a/hello5/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/30_day/harib27a/invader/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/30_day/harib27a/invader/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/30_day/harib27a/iroha/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/30_day/harib27a/iroha/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/30_day/harib27a/lines/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/30_day/harib27a/lines/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/30_day/harib27a/noodle/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/30_day/harib27a/noodle/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/30_day/harib27a/notrec/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/30_day/harib27a/notrec/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/30_day/harib27a/sosu/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/30_day/harib27a/sosu/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/30_day/harib27a/sosu2/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/30_day/harib27a/sosu2/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/30_day/harib27a/sosu3/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/30_day/harib27a/sosu3/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/30_day/harib27a/star1/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/30_day/harib27a/star1/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/30_day/harib27a/stars/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/30_day/harib27a/stars/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/30_day/harib27a/stars2/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/30_day/harib27b/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/30_day/harib27b/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/30_day/harib27b/a/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/30_day/harib27b/a/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/30_day/harib27c/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/30_day/harib27c/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/30_day/harib27c/a/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/30_day/harib27c/a/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/30_day/harib27d/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/30_day/harib27d/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/30_day/harib27d/a/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/30_day/harib27d/a/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/30_day/harib27e/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/30_day/harib27e/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/30_day/harib27e/a/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/30_day/harib27e/a/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/30_day/harib27f/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/30_day/harib27f/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /projects/30_day/harib27f/a/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /projects/30_day/harib27f/a/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /tolset/z_new_o/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /tolset/z_new_o/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /tolset/z_new_w/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /tolset/z_new_w/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe -------------------------------------------------------------------------------- /tolset/z_osabin/!cons_9x.bat: -------------------------------------------------------------------------------- 1 | command -------------------------------------------------------------------------------- /tolset/z_osabin/!cons_nt.bat: -------------------------------------------------------------------------------- 1 | cmd.exe --------------------------------------------------------------------------------