├── .clang-format ├── .github └── workflows │ └── build.yml ├── .gitignore ├── 99-hp39gii.rules ├── CMakeLists.txt ├── LICENSE ├── README.md ├── README_en.md ├── apps ├── CMakeLists.txt ├── coremark │ ├── CMakeLists.txt │ ├── coremark │ │ ├── core_list_join.c │ │ ├── core_main.c │ │ ├── core_matrix.c │ │ ├── core_portme.c │ │ ├── core_portme.h │ │ ├── core_state.c │ │ ├── core_util.c │ │ └── coremark.h │ ├── crt0.c │ ├── main.c │ └── stub.c ├── emu48 │ ├── CMakeLists.txt │ ├── MacTypePatch.h │ ├── MacWinAPIPatch.h │ ├── app_config.h │ ├── core │ │ ├── apple.c │ │ ├── apple.h │ │ ├── debugger.h │ │ ├── emu48.h │ │ ├── engine.c │ │ ├── external.c │ │ ├── fetch.c │ │ ├── i28f160.c │ │ ├── i28f160.h │ │ ├── io.h │ │ ├── keyboard.c │ │ ├── kml.h │ │ ├── lowbat.c │ │ ├── mops.c │ │ ├── opcodes.c │ │ ├── opcodes.h │ │ ├── ops.h │ │ ├── rpl.c │ │ ├── settings.c │ │ ├── stack.c │ │ └── types.h │ ├── crt0.c │ ├── disable │ │ ├── debugger.c │ │ ├── disasm.c │ │ ├── display.c │ │ ├── emu48.c │ │ ├── files.c │ │ ├── kml.c │ │ ├── serial.c │ │ └── timer.c │ ├── emu48_display.c │ ├── emu48_file.c │ ├── emu48_kb_39g.h │ ├── emu48_keyboard.c │ ├── emu48_keyboard.h │ ├── emu48_porting.c │ ├── emu48_serial.c │ ├── emu48_timer.c │ ├── keys_39gii.h │ ├── main.c │ ├── pch.h │ ├── resource.h │ └── stub.c ├── exploader.exe ├── faultTask │ ├── CMakeLists.txt │ ├── app_config.h │ ├── crt0.c │ ├── keys_39gii.h │ ├── main.c │ └── stub.c ├── gameboy │ ├── CMakeLists.txt │ ├── app_config.h │ ├── crt0.c │ ├── gb │ │ ├── CMakeLists.txt │ │ ├── cpu.c │ │ ├── cpu.h │ │ ├── interrupt.c │ │ ├── interrupt.h │ │ ├── lcd.c │ │ ├── lcd.h │ │ ├── main.c │ │ ├── mbc.c │ │ ├── mbc.h │ │ ├── mem.c │ │ ├── mem.h │ │ ├── rom.c │ │ ├── rom.h │ │ ├── sdl.c │ │ ├── sdl.h │ │ ├── timer.c │ │ └── timer.h │ ├── keys_39gii.h │ ├── main.c │ └── stub.c ├── helloworld │ ├── CMakeLists.txt │ ├── app_config.h │ ├── crt0.c │ ├── keys_39gii.h │ ├── main.c │ └── stub.c ├── khicas │ ├── CMakeLists.txt │ ├── app_config.h │ ├── crt0.c │ ├── font.h │ ├── keys_39gii.h │ ├── khicas_src │ │ ├── giac39 │ │ │ ├── Equation.h │ │ │ ├── MainIcon.bmp │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── addin.ld │ │ │ ├── alg_ext.cc │ │ │ ├── alg_ext.h │ │ │ ├── aspen_translate.h │ │ │ ├── blaswrap.h │ │ │ ├── catalog.h │ │ │ ├── changes.tgz │ │ │ ├── clapack.h │ │ │ ├── cocoa.cc │ │ │ ├── cocoa.h │ │ │ ├── config.h │ │ │ ├── console.cc │ │ │ ├── console.h │ │ │ ├── constantsProvider.hpp │ │ │ ├── crt0.s │ │ │ ├── csturm.cc │ │ │ ├── csturm.h │ │ │ ├── dConsole.h │ │ │ ├── debug.c │ │ │ ├── debug.h │ │ │ ├── defs.h │ │ │ ├── derive.cc │ │ │ ├── derive.h │ │ │ ├── desolve.cc │ │ │ ├── desolve.h │ │ │ ├── dispatch.h │ │ │ ├── eigen.bmp │ │ │ ├── elf.ld │ │ │ ├── ezgcd.cc │ │ │ ├── ezgcd.h │ │ │ ├── f2c.h │ │ │ ├── file.cc │ │ │ ├── file.h │ │ │ ├── fileGUI.hpp │ │ │ ├── fileProvider.hpp │ │ │ ├── first.cc │ │ │ ├── first.h │ │ │ ├── font.h │ │ │ ├── font7.c │ │ │ ├── fraction.h │ │ │ ├── gauss.cc │ │ │ ├── gauss.h │ │ │ ├── gausspol.cc │ │ │ ├── gausspol.h │ │ │ ├── gen.cc │ │ │ ├── gen.h │ │ │ ├── giac.h │ │ │ ├── giacPCH.h │ │ │ ├── giacintl.h │ │ │ ├── gl2ps.h │ │ │ ├── global.cc │ │ │ ├── global.h │ │ │ ├── gmp_replacements.h │ │ │ ├── graphe.h │ │ │ ├── graphicsProvider.hpp │ │ │ ├── graphtheory.h │ │ │ ├── help.cc │ │ │ ├── help.h │ │ │ ├── hist.h │ │ │ ├── history.h │ │ │ ├── icon.bmp │ │ │ ├── identificateur.cc │ │ │ ├── identificateur.h │ │ │ ├── ifactor.cc │ │ │ ├── ifactor.h │ │ │ ├── index.cc │ │ │ ├── index.h │ │ │ ├── inputGUI.hpp │ │ │ ├── input_lexer.cc │ │ │ ├── input_lexer.h │ │ │ ├── input_parser.cc │ │ │ ├── input_parser.h │ │ │ ├── input_parser.yy │ │ │ ├── intg.cc │ │ │ ├── intg.h │ │ │ ├── intgab.cc │ │ │ ├── intgab.h │ │ │ ├── iostream_sub.h │ │ │ ├── isom.cc │ │ │ ├── isom.h │ │ │ ├── k_cppsdk.cc │ │ │ ├── k_csdk.c │ │ │ ├── k_csdk.h │ │ │ ├── k_defs.h │ │ │ ├── kadd.cc │ │ │ ├── kcasporing_gl.h │ │ │ ├── kdisplay.cc │ │ │ ├── kdisplay.h │ │ │ ├── keyboard.h │ │ │ ├── khicas.bmp │ │ │ ├── khicasio.bmp │ │ │ ├── khicasio.png │ │ │ ├── khicasio1.png │ │ │ ├── khicasiouns.bmp │ │ │ ├── khicasiouns.png │ │ │ ├── lexer.h │ │ │ ├── lexer_tab_int.h │ │ │ ├── libText.c │ │ │ ├── libText.h │ │ │ ├── libcas.libcpp │ │ │ ├── libfx.h │ │ │ ├── libkcasgui.libcpp │ │ │ ├── lin.cc │ │ │ ├── lin.h │ │ │ ├── logo.bmp │ │ │ ├── logo.png │ │ │ ├── lpsolve.h │ │ │ ├── luabridge.h │ │ │ ├── main.cc │ │ │ ├── main.h │ │ │ ├── maple.cc │ │ │ ├── maple.h │ │ │ ├── math.c │ │ │ ├── mathml.cc │ │ │ ├── mathml.h │ │ │ ├── memmgr.h │ │ │ ├── memory.c │ │ │ ├── menuGUI.h │ │ │ ├── menu_config.h │ │ │ ├── menuen.cc │ │ │ ├── menufr.cc │ │ │ ├── misc.cc │ │ │ ├── misc.h │ │ │ ├── mken │ │ │ ├── mkfr │ │ │ ├── modfactor.cc │ │ │ ├── modfactor.h │ │ │ ├── modpoly.cc │ │ │ ├── modpoly.h │ │ │ ├── monomial.h │ │ │ ├── moyal.cc │ │ │ ├── moyal.h │ │ │ ├── myostream.h │ │ │ ├── opengl.h │ │ │ ├── optimization.h │ │ │ ├── pari.cc │ │ │ ├── pari.h │ │ │ ├── path.h │ │ │ ├── permu.cc │ │ │ ├── permu.h │ │ │ ├── plot.cc │ │ │ ├── plot.h │ │ │ ├── plot3d.cc │ │ │ ├── plot3d.h │ │ │ ├── poly.h │ │ │ ├── porting.h │ │ │ ├── prizm.ld │ │ │ ├── prog.cc │ │ │ ├── prog.h │ │ │ ├── quater.cc │ │ │ ├── quater.h │ │ │ ├── renee.h │ │ │ ├── risch.cc │ │ │ ├── risch.h │ │ │ ├── rpn.cc │ │ │ ├── rpn.h │ │ │ ├── selected.bmp │ │ │ ├── series.cc │ │ │ ├── series.h │ │ │ ├── signalprocessing.h │ │ │ ├── softmath.h │ │ │ ├── solve.cc │ │ │ ├── solve.h │ │ │ ├── sparse.cc │ │ │ ├── sparse.h │ │ │ ├── static.h │ │ │ ├── static_extern.h │ │ │ ├── static_help.h │ │ │ ├── static_lexer.h │ │ │ ├── static_lexer_.h │ │ │ ├── static_lexer__numworks.h │ │ │ ├── static_lexer_at.h │ │ │ ├── static_lexer_empty.h │ │ │ ├── static_lexer_full.h │ │ │ ├── static_lexer_full_.h │ │ │ ├── static_lexer_numworks.h │ │ │ ├── stdstream │ │ │ ├── stringsProvider.hpp │ │ │ ├── subst.cc │ │ │ ├── subst.h │ │ │ ├── sym2poly.cc │ │ │ ├── sym2poly.h │ │ │ ├── symbolic.cc │ │ │ ├── symbolic.h │ │ │ ├── syscalls.h │ │ │ ├── syscalls.s │ │ │ ├── tex.cc │ │ │ ├── tex.h │ │ │ ├── textGUI.cc │ │ │ ├── textGUI.h │ │ │ ├── threaded.cc │ │ │ ├── threaded.h │ │ │ ├── ti89.cc │ │ │ ├── ti89.h │ │ │ ├── tinymt32.cc │ │ │ ├── tinymt32.h │ │ │ ├── tinymt32_license.h │ │ │ ├── unary.cc │ │ │ ├── unary.h │ │ │ ├── unselected.bmp │ │ │ ├── update39 │ │ │ ├── usual.cc │ │ │ ├── usual.h │ │ │ ├── vecteur.cc │ │ │ ├── vecteur.h │ │ │ └── vector.h │ │ ├── gmp-6.1.2 │ │ │ ├── .gdbinit │ │ │ ├── AUTHORS │ │ │ ├── COPYING │ │ │ ├── COPYING.LESSERv3 │ │ │ ├── COPYINGv2 │ │ │ ├── COPYINGv3 │ │ │ ├── ChangeLog │ │ │ ├── INSTALL │ │ │ ├── INSTALL.autoconf │ │ │ ├── Makefile │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── Makefile~ │ │ │ ├── NEWS │ │ │ ├── README │ │ │ ├── acinclude.m4 │ │ │ ├── aclocal.m4 │ │ │ ├── assert.c │ │ │ ├── bootstrap.c │ │ │ ├── buildExistOS │ │ │ ├── compat.c │ │ │ ├── compile │ │ │ ├── conf_test.c │ │ │ ├── config │ │ │ ├── config.guess │ │ │ ├── config.h │ │ │ ├── config.in │ │ │ ├── config.log │ │ │ ├── config.m4 │ │ │ ├── config.status │ │ │ ├── config.sub │ │ │ ├── configfsf.guess │ │ │ ├── configfsf.sub │ │ │ ├── configure │ │ │ ├── configure.ac │ │ │ ├── configure~ │ │ │ ├── config~ │ │ │ ├── cxx │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── dummy.cc │ │ │ │ ├── isfuns.cc │ │ │ │ ├── ismpf.cc │ │ │ │ ├── ismpq.cc │ │ │ │ ├── ismpz.cc │ │ │ │ ├── ismpznw.cc │ │ │ │ ├── limits.cc │ │ │ │ ├── osdoprnti.cc │ │ │ │ ├── osfuns.cc │ │ │ │ ├── osmpf.cc │ │ │ │ ├── osmpq.cc │ │ │ │ └── osmpz.cc │ │ │ ├── demos │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── calc │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── README │ │ │ │ │ ├── calc-common.h │ │ │ │ │ ├── calc-config-h.in │ │ │ │ │ ├── calc-config.h │ │ │ │ │ ├── calc.c │ │ │ │ │ ├── calc.h │ │ │ │ │ ├── calc.y │ │ │ │ │ ├── calclex.c │ │ │ │ │ ├── calclex.l │ │ │ │ │ └── calcread.c │ │ │ │ ├── expr │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── README │ │ │ │ │ ├── expr-impl.h │ │ │ │ │ ├── expr.c │ │ │ │ │ ├── expr.h │ │ │ │ │ ├── exprf.c │ │ │ │ │ ├── exprfa.c │ │ │ │ │ ├── exprq.c │ │ │ │ │ ├── exprqa.c │ │ │ │ │ ├── exprv.c │ │ │ │ │ ├── exprz.c │ │ │ │ │ ├── exprza.c │ │ │ │ │ ├── run-expr.c │ │ │ │ │ └── t-expr.c │ │ │ │ ├── factorize.c │ │ │ │ ├── isprime.c │ │ │ │ ├── perl │ │ │ │ │ ├── GMP.pm │ │ │ │ │ ├── GMP.xs │ │ │ │ │ ├── GMP │ │ │ │ │ │ ├── Mpf.pm │ │ │ │ │ │ ├── Mpq.pm │ │ │ │ │ │ ├── Mpz.pm │ │ │ │ │ │ └── Rand.pm │ │ │ │ │ ├── INSTALL │ │ │ │ │ ├── Makefile.PL │ │ │ │ │ ├── sample.pl │ │ │ │ │ ├── test.pl │ │ │ │ │ ├── test2.pl │ │ │ │ │ └── typemap │ │ │ │ ├── pexpr-config-h.in │ │ │ │ ├── pexpr-config.h │ │ │ │ ├── pexpr.c │ │ │ │ ├── primes.c │ │ │ │ ├── primes.h │ │ │ │ └── qcn.c │ │ │ ├── doc │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── configuration │ │ │ │ ├── fdl-1.3.texi │ │ │ │ ├── gmp.info │ │ │ │ ├── gmp.info-1 │ │ │ │ ├── gmp.info-2 │ │ │ │ ├── gmp.texi │ │ │ │ ├── isa_abi_headache │ │ │ │ ├── mdate-sh │ │ │ │ ├── projects.html │ │ │ │ ├── stamp-vti │ │ │ │ ├── tasks.html │ │ │ │ ├── texinfo.tex │ │ │ │ └── version.texi │ │ │ ├── errno.c │ │ │ ├── extract-dbl.c │ │ │ ├── fac_table.h │ │ │ ├── fib_table.h │ │ │ ├── gen-bases │ │ │ ├── gen-bases.c │ │ │ ├── gen-fac │ │ │ ├── gen-fac.c │ │ │ ├── gen-fib │ │ │ ├── gen-fib.c │ │ │ ├── gen-jacobitab │ │ │ ├── gen-jacobitab.c │ │ │ ├── gen-psqr │ │ │ ├── gen-psqr.c │ │ │ ├── gen-trialdivtab │ │ │ ├── gen-trialdivtab.c │ │ │ ├── gmp-h.in │ │ │ ├── gmp-impl.h │ │ │ ├── gmp-impl.h~ │ │ │ ├── gmp.h │ │ │ ├── gmpxx.h │ │ │ ├── install-sh │ │ │ ├── invalid.c │ │ │ ├── libtool │ │ │ ├── longlong.h │ │ │ ├── ltmain.sh │ │ │ ├── memory.c │ │ │ ├── mini-gmp │ │ │ │ ├── README │ │ │ │ ├── mini-gmp.c │ │ │ │ ├── mini-gmp.h │ │ │ │ └── tests │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── hex-random.c │ │ │ │ │ ├── hex-random.h │ │ │ │ │ ├── mini-random.c │ │ │ │ │ ├── mini-random.h │ │ │ │ │ ├── run-tests │ │ │ │ │ ├── t-add.c │ │ │ │ │ ├── t-aorsmul.c │ │ │ │ │ ├── t-bitops.c │ │ │ │ │ ├── t-cmp_d.c │ │ │ │ │ ├── t-comb.c │ │ │ │ │ ├── t-cong.c │ │ │ │ │ ├── t-div.c │ │ │ │ │ ├── t-div_2exp.c │ │ │ │ │ ├── t-double.c │ │ │ │ │ ├── t-gcd.c │ │ │ │ │ ├── t-import.c │ │ │ │ │ ├── t-invert.c │ │ │ │ │ ├── t-lcm.c │ │ │ │ │ ├── t-limbs.c │ │ │ │ │ ├── t-logops.c │ │ │ │ │ ├── t-mul.c │ │ │ │ │ ├── t-powm.c │ │ │ │ │ ├── t-pprime_p.c │ │ │ │ │ ├── t-reuse.c │ │ │ │ │ ├── t-root.c │ │ │ │ │ ├── t-scan.c │ │ │ │ │ ├── t-signed.c │ │ │ │ │ ├── t-sqrt.c │ │ │ │ │ ├── t-str.c │ │ │ │ │ ├── t-sub.c │ │ │ │ │ ├── testutils.c │ │ │ │ │ └── testutils.h │ │ │ ├── missing │ │ │ ├── mp_bases.h │ │ │ ├── mp_bpl.c │ │ │ ├── mp_clz_tab.c │ │ │ ├── mp_dv_tab.c │ │ │ ├── mp_get_fns.c │ │ │ ├── mp_minv_tab.c │ │ │ ├── mp_set_fns.c │ │ │ ├── mpf │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── Makefile~ │ │ │ │ ├── abs.c │ │ │ │ ├── add.c │ │ │ │ ├── add_ui.c │ │ │ │ ├── ceilfloor.c │ │ │ │ ├── clear.c │ │ │ │ ├── clears.c │ │ │ │ ├── cmp.c │ │ │ │ ├── cmp_d.c │ │ │ │ ├── cmp_si.c │ │ │ │ ├── cmp_ui.c │ │ │ │ ├── cmp_z.c │ │ │ │ ├── div.c │ │ │ │ ├── div_2exp.c │ │ │ │ ├── div_ui.c │ │ │ │ ├── dump.c │ │ │ │ ├── eq.c │ │ │ │ ├── fits_s.h │ │ │ │ ├── fits_sint.c │ │ │ │ ├── fits_slong.c │ │ │ │ ├── fits_sshort.c │ │ │ │ ├── fits_u.h │ │ │ │ ├── fits_uint.c │ │ │ │ ├── fits_ulong.c │ │ │ │ ├── fits_ushort.c │ │ │ │ ├── get_d.c │ │ │ │ ├── get_d_2exp.c │ │ │ │ ├── get_dfl_prec.c │ │ │ │ ├── get_prc.c │ │ │ │ ├── get_si.c │ │ │ │ ├── get_str.c │ │ │ │ ├── get_ui.c │ │ │ │ ├── init.c │ │ │ │ ├── init2.c │ │ │ │ ├── inits.c │ │ │ │ ├── inp_str.c │ │ │ │ ├── int_p.c │ │ │ │ ├── iset.c │ │ │ │ ├── iset_d.c │ │ │ │ ├── iset_si.c │ │ │ │ ├── iset_str.c │ │ │ │ ├── iset_ui.c │ │ │ │ ├── mul.c │ │ │ │ ├── mul_2exp.c │ │ │ │ ├── mul_ui.c │ │ │ │ ├── neg.c │ │ │ │ ├── out_str.c │ │ │ │ ├── pow_ui.c │ │ │ │ ├── random2.c │ │ │ │ ├── reldiff.c │ │ │ │ ├── set.c │ │ │ │ ├── set_d.c │ │ │ │ ├── set_dfl_prec.c │ │ │ │ ├── set_prc.c │ │ │ │ ├── set_prc_raw.c │ │ │ │ ├── set_q.c │ │ │ │ ├── set_si.c │ │ │ │ ├── set_str.c │ │ │ │ ├── set_ui.c │ │ │ │ ├── set_z.c │ │ │ │ ├── size.c │ │ │ │ ├── sqrt.c │ │ │ │ ├── sqrt_ui.c │ │ │ │ ├── sub.c │ │ │ │ ├── sub_ui.c │ │ │ │ ├── swap.c │ │ │ │ ├── trunc.c │ │ │ │ ├── ui_div.c │ │ │ │ ├── ui_sub.c │ │ │ │ └── urandomb.c │ │ │ ├── mpn │ │ │ │ ├── Makeasm.am │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── Makefile~ │ │ │ │ ├── README │ │ │ │ ├── alpha │ │ │ │ │ ├── README │ │ │ │ │ ├── add_n.asm │ │ │ │ │ ├── addmul_1.asm │ │ │ │ │ ├── alpha-defs.m4 │ │ │ │ │ ├── aorslsh1_n.asm │ │ │ │ │ ├── aorslsh2_n.asm │ │ │ │ │ ├── bdiv_dbm1c.asm │ │ │ │ │ ├── cntlz.asm │ │ │ │ │ ├── com.asm │ │ │ │ │ ├── copyd.asm │ │ │ │ │ ├── copyi.asm │ │ │ │ │ ├── default.m4 │ │ │ │ │ ├── dive_1.c │ │ │ │ │ ├── divrem_2.asm │ │ │ │ │ ├── ev5 │ │ │ │ │ │ ├── diveby3.asm │ │ │ │ │ │ └── gmp-mparam.h │ │ │ │ │ ├── ev6 │ │ │ │ │ │ ├── add_n.asm │ │ │ │ │ │ ├── aorslsh1_n.asm │ │ │ │ │ │ ├── aorsmul_1.asm │ │ │ │ │ │ ├── gmp-mparam.h │ │ │ │ │ │ ├── mod_1_4.asm │ │ │ │ │ │ ├── mul_1.asm │ │ │ │ │ │ ├── nails │ │ │ │ │ │ │ ├── README │ │ │ │ │ │ │ ├── addmul_1.asm │ │ │ │ │ │ │ ├── addmul_2.asm │ │ │ │ │ │ │ ├── addmul_3.asm │ │ │ │ │ │ │ ├── addmul_4.asm │ │ │ │ │ │ │ ├── aors_n.asm │ │ │ │ │ │ │ ├── gmp-mparam.h │ │ │ │ │ │ │ ├── mul_1.asm │ │ │ │ │ │ │ └── submul_1.asm │ │ │ │ │ │ ├── slot.pl │ │ │ │ │ │ └── sub_n.asm │ │ │ │ │ ├── ev67 │ │ │ │ │ │ ├── gcd_1.asm │ │ │ │ │ │ ├── hamdist.asm │ │ │ │ │ │ └── popcount.asm │ │ │ │ │ ├── gmp-mparam.h │ │ │ │ │ ├── invert_limb.asm │ │ │ │ │ ├── lshift.asm │ │ │ │ │ ├── mod_34lsub1.asm │ │ │ │ │ ├── mode1o.asm │ │ │ │ │ ├── mul_1.asm │ │ │ │ │ ├── rshift.asm │ │ │ │ │ ├── sec_tabselect.asm │ │ │ │ │ ├── sqr_diag_addlsh1.asm │ │ │ │ │ ├── sub_n.asm │ │ │ │ │ ├── submul_1.asm │ │ │ │ │ ├── umul.asm │ │ │ │ │ └── unicos.m4 │ │ │ │ ├── arm │ │ │ │ │ ├── README │ │ │ │ │ ├── aors_n.asm │ │ │ │ │ ├── aorslsh1_n.asm │ │ │ │ │ ├── aorsmul_1.asm │ │ │ │ │ ├── arm-defs.m4 │ │ │ │ │ ├── bdiv_dbm1c.asm │ │ │ │ │ ├── cnd_aors_n.asm │ │ │ │ │ ├── com.asm │ │ │ │ │ ├── copyd.asm │ │ │ │ │ ├── copyi.asm │ │ │ │ │ ├── dive_1.asm │ │ │ │ │ ├── gmp-mparam.h │ │ │ │ │ ├── invert_limb.asm │ │ │ │ │ ├── logops_n.asm │ │ │ │ │ ├── lshift.asm │ │ │ │ │ ├── lshiftc.asm │ │ │ │ │ ├── mod_34lsub1.asm │ │ │ │ │ ├── mode1o.asm │ │ │ │ │ ├── mul_1.asm │ │ │ │ │ ├── neon │ │ │ │ │ │ ├── README │ │ │ │ │ │ ├── hamdist.asm │ │ │ │ │ │ ├── lorrshift.asm │ │ │ │ │ │ ├── lshiftc.asm │ │ │ │ │ │ ├── popcount.asm │ │ │ │ │ │ └── sec_tabselect.asm │ │ │ │ │ ├── rsh1aors_n.asm │ │ │ │ │ ├── rshift.asm │ │ │ │ │ ├── sec_tabselect.asm │ │ │ │ │ ├── udiv.asm │ │ │ │ │ ├── v5 │ │ │ │ │ │ ├── gcd_1.asm │ │ │ │ │ │ ├── mod_1_1.asm │ │ │ │ │ │ └── mod_1_2.asm │ │ │ │ │ ├── v6 │ │ │ │ │ │ ├── addmul_1.asm │ │ │ │ │ │ ├── addmul_2.asm │ │ │ │ │ │ ├── addmul_3.asm │ │ │ │ │ │ ├── dive_1.asm │ │ │ │ │ │ ├── gmp-mparam.h │ │ │ │ │ │ ├── mode1o.asm │ │ │ │ │ │ ├── mul_1.asm │ │ │ │ │ │ ├── mul_2.asm │ │ │ │ │ │ ├── popham.asm │ │ │ │ │ │ ├── sqr_basecase.asm │ │ │ │ │ │ └── submul_1.asm │ │ │ │ │ ├── v6t2 │ │ │ │ │ │ ├── divrem_1.asm │ │ │ │ │ │ └── gcd_1.asm │ │ │ │ │ └── v7a │ │ │ │ │ │ ├── cora15 │ │ │ │ │ │ ├── addmul_1.asm │ │ │ │ │ │ ├── aors_n.asm │ │ │ │ │ │ ├── cnd_aors_n.asm │ │ │ │ │ │ ├── com.asm │ │ │ │ │ │ ├── gmp-mparam.h │ │ │ │ │ │ ├── logops_n.asm │ │ │ │ │ │ ├── mul_1.asm │ │ │ │ │ │ ├── neon │ │ │ │ │ │ │ ├── aorsorrlsh1_n.asm │ │ │ │ │ │ │ ├── aorsorrlsh2_n.asm │ │ │ │ │ │ │ ├── aorsorrlshC_n.asm │ │ │ │ │ │ │ ├── com.asm │ │ │ │ │ │ │ ├── copyd.asm │ │ │ │ │ │ │ ├── copyi.asm │ │ │ │ │ │ │ └── rsh1aors_n.asm │ │ │ │ │ │ └── submul_1.asm │ │ │ │ │ │ ├── cora7 │ │ │ │ │ │ └── gmp-mparam.h │ │ │ │ │ │ ├── cora8 │ │ │ │ │ │ └── gmp-mparam.h │ │ │ │ │ │ └── cora9 │ │ │ │ │ │ └── gmp-mparam.h │ │ │ │ ├── arm64 │ │ │ │ │ ├── aors_n.asm │ │ │ │ │ ├── aorsmul_1.asm │ │ │ │ │ ├── bdiv_dbm1c.asm │ │ │ │ │ ├── cnd_aors_n.asm │ │ │ │ │ ├── com.asm │ │ │ │ │ ├── copyd.asm │ │ │ │ │ ├── copyi.asm │ │ │ │ │ ├── gcd_1.asm │ │ │ │ │ ├── gmp-mparam.h │ │ │ │ │ ├── hamdist.asm │ │ │ │ │ ├── invert_limb.asm │ │ │ │ │ ├── logops_n.asm │ │ │ │ │ ├── lshift.asm │ │ │ │ │ ├── mod_34lsub1.asm │ │ │ │ │ ├── mul_1.asm │ │ │ │ │ ├── popcount.asm │ │ │ │ │ ├── rshift.asm │ │ │ │ │ └── sec_tabselect.asm │ │ │ │ ├── asm-defs.m4 │ │ │ │ ├── cpp-ccas │ │ │ │ ├── cray │ │ │ │ │ ├── README │ │ │ │ │ ├── add_n.c │ │ │ │ │ ├── cfp │ │ │ │ │ │ ├── addmul_1.c │ │ │ │ │ │ ├── mul_1.c │ │ │ │ │ │ ├── mulwwc90.s │ │ │ │ │ │ ├── mulwwj90.s │ │ │ │ │ │ └── submul_1.c │ │ │ │ │ ├── gmp-mparam.h │ │ │ │ │ ├── hamdist.c │ │ │ │ │ ├── ieee │ │ │ │ │ │ ├── addmul_1.c │ │ │ │ │ │ ├── gmp-mparam.h │ │ │ │ │ │ ├── invert_limb.c │ │ │ │ │ │ ├── mul_1.c │ │ │ │ │ │ ├── mul_basecase.c │ │ │ │ │ │ ├── sqr_basecase.c │ │ │ │ │ │ └── submul_1.c │ │ │ │ │ ├── lshift.c │ │ │ │ │ ├── mulww.f │ │ │ │ │ ├── popcount.c │ │ │ │ │ ├── rshift.c │ │ │ │ │ └── sub_n.c │ │ │ │ ├── fib_table.c │ │ │ │ ├── generic │ │ │ │ │ ├── add.c │ │ │ │ │ ├── add_1.c │ │ │ │ │ ├── add_err1_n.c │ │ │ │ │ ├── add_err2_n.c │ │ │ │ │ ├── add_err3_n.c │ │ │ │ │ ├── add_n.c │ │ │ │ │ ├── add_n_sub_n.c │ │ │ │ │ ├── addmul_1.c │ │ │ │ │ ├── bdiv_dbm1c.c │ │ │ │ │ ├── bdiv_q.c │ │ │ │ │ ├── bdiv_q_1.c │ │ │ │ │ ├── bdiv_qr.c │ │ │ │ │ ├── binvert.c │ │ │ │ │ ├── broot.c │ │ │ │ │ ├── brootinv.c │ │ │ │ │ ├── bsqrt.c │ │ │ │ │ ├── bsqrtinv.c │ │ │ │ │ ├── cmp.c │ │ │ │ │ ├── cnd_add_n.c │ │ │ │ │ ├── cnd_sub_n.c │ │ │ │ │ ├── cnd_swap.c │ │ │ │ │ ├── com.c │ │ │ │ │ ├── comb_tables.c │ │ │ │ │ ├── copyd.c │ │ │ │ │ ├── copyi.c │ │ │ │ │ ├── dcpi1_bdiv_q.c │ │ │ │ │ ├── dcpi1_bdiv_qr.c │ │ │ │ │ ├── dcpi1_div_q.c │ │ │ │ │ ├── dcpi1_div_qr.c │ │ │ │ │ ├── dcpi1_divappr_q.c │ │ │ │ │ ├── div_q.c │ │ │ │ │ ├── div_qr_1.c │ │ │ │ │ ├── div_qr_1n_pi1.c │ │ │ │ │ ├── div_qr_1n_pi2.c │ │ │ │ │ ├── div_qr_1u_pi2.c │ │ │ │ │ ├── div_qr_2.c │ │ │ │ │ ├── div_qr_2n_pi1.c │ │ │ │ │ ├── div_qr_2u_pi1.c │ │ │ │ │ ├── dive_1.c │ │ │ │ │ ├── diveby3.c │ │ │ │ │ ├── divexact.c │ │ │ │ │ ├── divis.c │ │ │ │ │ ├── divrem.c │ │ │ │ │ ├── divrem_1.c │ │ │ │ │ ├── divrem_2.c │ │ │ │ │ ├── dump.c │ │ │ │ │ ├── fib2_ui.c │ │ │ │ │ ├── gcd.c │ │ │ │ │ ├── gcd_1.c │ │ │ │ │ ├── gcd_subdiv_step.c │ │ │ │ │ ├── gcdext.c │ │ │ │ │ ├── gcdext_1.c │ │ │ │ │ ├── gcdext_lehmer.c │ │ │ │ │ ├── get_d.c │ │ │ │ │ ├── get_str.c │ │ │ │ │ ├── gmp-mparam.h │ │ │ │ │ ├── hgcd.c │ │ │ │ │ ├── hgcd2.c │ │ │ │ │ ├── hgcd2_jacobi.c │ │ │ │ │ ├── hgcd_appr.c │ │ │ │ │ ├── hgcd_jacobi.c │ │ │ │ │ ├── hgcd_matrix.c │ │ │ │ │ ├── hgcd_reduce.c │ │ │ │ │ ├── hgcd_step.c │ │ │ │ │ ├── invert.c │ │ │ │ │ ├── invertappr.c │ │ │ │ │ ├── jacbase.c │ │ │ │ │ ├── jacobi.c │ │ │ │ │ ├── jacobi_2.c │ │ │ │ │ ├── logops_n.c │ │ │ │ │ ├── lshift.c │ │ │ │ │ ├── lshiftc.c │ │ │ │ │ ├── matrix22_mul.c │ │ │ │ │ ├── matrix22_mul1_inverse_vector.c │ │ │ │ │ ├── mod_1.c │ │ │ │ │ ├── mod_1_1.c │ │ │ │ │ ├── mod_1_2.c │ │ │ │ │ ├── mod_1_3.c │ │ │ │ │ ├── mod_1_4.c │ │ │ │ │ ├── mod_34lsub1.c │ │ │ │ │ ├── mode1o.c │ │ │ │ │ ├── mu_bdiv_q.c │ │ │ │ │ ├── mu_bdiv_qr.c │ │ │ │ │ ├── mu_div_q.c │ │ │ │ │ ├── mu_div_qr.c │ │ │ │ │ ├── mu_divappr_q.c │ │ │ │ │ ├── mul.c │ │ │ │ │ ├── mul_1.c │ │ │ │ │ ├── mul_basecase.c │ │ │ │ │ ├── mul_fft.c │ │ │ │ │ ├── mul_n.c │ │ │ │ │ ├── mullo_basecase.c │ │ │ │ │ ├── mullo_n.c │ │ │ │ │ ├── mulmid.c │ │ │ │ │ ├── mulmid_basecase.c │ │ │ │ │ ├── mulmid_n.c │ │ │ │ │ ├── mulmod_bnm1.c │ │ │ │ │ ├── neg.c │ │ │ │ │ ├── nussbaumer_mul.c │ │ │ │ │ ├── perfpow.c │ │ │ │ │ ├── perfsqr.c │ │ │ │ │ ├── popham.c │ │ │ │ │ ├── pow_1.c │ │ │ │ │ ├── powlo.c │ │ │ │ │ ├── powm.c │ │ │ │ │ ├── pre_divrem_1.c │ │ │ │ │ ├── pre_mod_1.c │ │ │ │ │ ├── random.c │ │ │ │ │ ├── random2.c │ │ │ │ │ ├── redc_1.c │ │ │ │ │ ├── redc_2.c │ │ │ │ │ ├── redc_n.c │ │ │ │ │ ├── remove.c │ │ │ │ │ ├── rootrem.c │ │ │ │ │ ├── rshift.c │ │ │ │ │ ├── sbpi1_bdiv_q.c │ │ │ │ │ ├── sbpi1_bdiv_qr.c │ │ │ │ │ ├── sbpi1_div_q.c │ │ │ │ │ ├── sbpi1_div_qr.c │ │ │ │ │ ├── sbpi1_divappr_q.c │ │ │ │ │ ├── scan0.c │ │ │ │ │ ├── scan1.c │ │ │ │ │ ├── sec_aors_1.c │ │ │ │ │ ├── sec_div.c │ │ │ │ │ ├── sec_invert.c │ │ │ │ │ ├── sec_mul.c │ │ │ │ │ ├── sec_pi1_div.c │ │ │ │ │ ├── sec_powm.c │ │ │ │ │ ├── sec_sqr.c │ │ │ │ │ ├── sec_tabselect.c │ │ │ │ │ ├── set_str.c │ │ │ │ │ ├── sizeinbase.c │ │ │ │ │ ├── sqr.c │ │ │ │ │ ├── sqr_basecase.c │ │ │ │ │ ├── sqrlo.c │ │ │ │ │ ├── sqrlo_basecase.c │ │ │ │ │ ├── sqrmod_bnm1.c │ │ │ │ │ ├── sqrtrem.c │ │ │ │ │ ├── sub.c │ │ │ │ │ ├── sub_1.c │ │ │ │ │ ├── sub_err1_n.c │ │ │ │ │ ├── sub_err2_n.c │ │ │ │ │ ├── sub_err3_n.c │ │ │ │ │ ├── sub_n.c │ │ │ │ │ ├── submul_1.c │ │ │ │ │ ├── tdiv_qr.c │ │ │ │ │ ├── toom22_mul.c │ │ │ │ │ ├── toom2_sqr.c │ │ │ │ │ ├── toom32_mul.c │ │ │ │ │ ├── toom33_mul.c │ │ │ │ │ ├── toom3_sqr.c │ │ │ │ │ ├── toom42_mul.c │ │ │ │ │ ├── toom42_mulmid.c │ │ │ │ │ ├── toom43_mul.c │ │ │ │ │ ├── toom44_mul.c │ │ │ │ │ ├── toom4_sqr.c │ │ │ │ │ ├── toom52_mul.c │ │ │ │ │ ├── toom53_mul.c │ │ │ │ │ ├── toom54_mul.c │ │ │ │ │ ├── toom62_mul.c │ │ │ │ │ ├── toom63_mul.c │ │ │ │ │ ├── toom6_sqr.c │ │ │ │ │ ├── toom6h_mul.c │ │ │ │ │ ├── toom8_sqr.c │ │ │ │ │ ├── toom8h_mul.c │ │ │ │ │ ├── toom_couple_handling.c │ │ │ │ │ ├── toom_eval_dgr3_pm1.c │ │ │ │ │ ├── toom_eval_dgr3_pm2.c │ │ │ │ │ ├── toom_eval_pm1.c │ │ │ │ │ ├── toom_eval_pm2.c │ │ │ │ │ ├── toom_eval_pm2exp.c │ │ │ │ │ ├── toom_eval_pm2rexp.c │ │ │ │ │ ├── toom_interpolate_12pts.c │ │ │ │ │ ├── toom_interpolate_16pts.c │ │ │ │ │ ├── toom_interpolate_5pts.c │ │ │ │ │ ├── toom_interpolate_6pts.c │ │ │ │ │ ├── toom_interpolate_7pts.c │ │ │ │ │ ├── toom_interpolate_8pts.c │ │ │ │ │ ├── trialdiv.c │ │ │ │ │ ├── udiv_w_sdiv.c │ │ │ │ │ ├── zero.c │ │ │ │ │ └── zero_p.c │ │ │ │ ├── ia64 │ │ │ │ │ ├── README │ │ │ │ │ ├── add_n_sub_n.asm │ │ │ │ │ ├── addmul_1.asm │ │ │ │ │ ├── addmul_2.asm │ │ │ │ │ ├── aors_n.asm │ │ │ │ │ ├── aorsorrlsh1_n.asm │ │ │ │ │ ├── aorsorrlsh2_n.asm │ │ │ │ │ ├── aorsorrlshC_n.asm │ │ │ │ │ ├── bdiv_dbm1c.asm │ │ │ │ │ ├── cnd_aors_n.asm │ │ │ │ │ ├── copyd.asm │ │ │ │ │ ├── copyi.asm │ │ │ │ │ ├── dive_1.asm │ │ │ │ │ ├── divrem_1.asm │ │ │ │ │ ├── divrem_2.asm │ │ │ │ │ ├── gcd_1.asm │ │ │ │ │ ├── gmp-mparam.h │ │ │ │ │ ├── hamdist.asm │ │ │ │ │ ├── ia64-defs.m4 │ │ │ │ │ ├── invert_limb.asm │ │ │ │ │ ├── logops_n.asm │ │ │ │ │ ├── lorrshift.asm │ │ │ │ │ ├── lshiftc.asm │ │ │ │ │ ├── mod_34lsub1.asm │ │ │ │ │ ├── mode1o.asm │ │ │ │ │ ├── mul_1.asm │ │ │ │ │ ├── mul_2.asm │ │ │ │ │ ├── popcount.asm │ │ │ │ │ ├── rsh1aors_n.asm │ │ │ │ │ ├── sec_tabselect.asm │ │ │ │ │ ├── sqr_diag_addlsh1.asm │ │ │ │ │ └── submul_1.asm │ │ │ │ ├── jacobitab.h │ │ │ │ ├── lisp │ │ │ │ │ └── gmpasm-mode.el │ │ │ │ ├── m4-ccas │ │ │ │ ├── m68k │ │ │ │ │ ├── README │ │ │ │ │ ├── aors_n.asm │ │ │ │ │ ├── gmp-mparam.h │ │ │ │ │ ├── lshift.asm │ │ │ │ │ ├── m68k-defs.m4 │ │ │ │ │ ├── mc68020 │ │ │ │ │ │ ├── aorsmul_1.asm │ │ │ │ │ │ ├── mul_1.asm │ │ │ │ │ │ ├── udiv.asm │ │ │ │ │ │ └── umul.asm │ │ │ │ │ ├── rshift.asm │ │ │ │ │ └── t-m68k-defs.pl │ │ │ │ ├── m88k │ │ │ │ │ ├── README │ │ │ │ │ ├── add_n.s │ │ │ │ │ ├── mc88110 │ │ │ │ │ │ ├── add_n.S │ │ │ │ │ │ ├── addmul_1.s │ │ │ │ │ │ ├── mul_1.s │ │ │ │ │ │ └── sub_n.S │ │ │ │ │ ├── mul_1.s │ │ │ │ │ └── sub_n.s │ │ │ │ ├── minithres │ │ │ │ │ └── gmp-mparam.h │ │ │ │ ├── mips32 │ │ │ │ │ ├── add_n.asm │ │ │ │ │ ├── addmul_1.asm │ │ │ │ │ ├── gmp-mparam.h │ │ │ │ │ ├── lshift.asm │ │ │ │ │ ├── mips-defs.m4 │ │ │ │ │ ├── mips.m4 │ │ │ │ │ ├── mul_1.asm │ │ │ │ │ ├── rshift.asm │ │ │ │ │ ├── sub_n.asm │ │ │ │ │ ├── submul_1.asm │ │ │ │ │ └── umul.asm │ │ │ │ ├── mips64 │ │ │ │ │ ├── README │ │ │ │ │ ├── add_n.asm │ │ │ │ │ ├── addmul_1.asm │ │ │ │ │ ├── gmp-mparam.h │ │ │ │ │ ├── lshift.asm │ │ │ │ │ ├── mul_1.asm │ │ │ │ │ ├── rshift.asm │ │ │ │ │ ├── sqr_diagonal.asm │ │ │ │ │ ├── sub_n.asm │ │ │ │ │ ├── submul_1.asm │ │ │ │ │ └── umul.asm │ │ │ │ ├── mp_bases.c │ │ │ │ ├── pa32 │ │ │ │ │ ├── README │ │ │ │ │ ├── add_n.asm │ │ │ │ │ ├── gmp-mparam.h │ │ │ │ │ ├── hppa1_1 │ │ │ │ │ │ ├── addmul_1.asm │ │ │ │ │ │ ├── gmp-mparam.h │ │ │ │ │ │ ├── mul_1.asm │ │ │ │ │ │ ├── pa7100 │ │ │ │ │ │ │ ├── add_n.asm │ │ │ │ │ │ │ ├── addmul_1.asm │ │ │ │ │ │ │ ├── lshift.asm │ │ │ │ │ │ │ ├── rshift.asm │ │ │ │ │ │ │ ├── sub_n.asm │ │ │ │ │ │ │ └── submul_1.asm │ │ │ │ │ │ ├── sqr_diagonal.asm │ │ │ │ │ │ ├── submul_1.asm │ │ │ │ │ │ ├── udiv.asm │ │ │ │ │ │ └── umul.asm │ │ │ │ │ ├── hppa2_0 │ │ │ │ │ │ ├── add_n.asm │ │ │ │ │ │ ├── gmp-mparam.h │ │ │ │ │ │ ├── sqr_diagonal.asm │ │ │ │ │ │ └── sub_n.asm │ │ │ │ │ ├── lshift.asm │ │ │ │ │ ├── pa-defs.m4 │ │ │ │ │ ├── rshift.asm │ │ │ │ │ ├── sub_n.asm │ │ │ │ │ └── udiv.asm │ │ │ │ ├── pa64 │ │ │ │ │ ├── README │ │ │ │ │ ├── addmul_1.asm │ │ │ │ │ ├── aors_n.asm │ │ │ │ │ ├── aorslsh1_n.asm │ │ │ │ │ ├── gmp-mparam.h │ │ │ │ │ ├── lshift.asm │ │ │ │ │ ├── mul_1.asm │ │ │ │ │ ├── rshift.asm │ │ │ │ │ ├── sqr_diagonal.asm │ │ │ │ │ ├── submul_1.asm │ │ │ │ │ ├── udiv.asm │ │ │ │ │ └── umul.asm │ │ │ │ ├── perfsqr.h │ │ │ │ ├── power │ │ │ │ │ ├── add_n.asm │ │ │ │ │ ├── addmul_1.asm │ │ │ │ │ ├── gmp-mparam.h │ │ │ │ │ ├── lshift.asm │ │ │ │ │ ├── mul_1.asm │ │ │ │ │ ├── rshift.asm │ │ │ │ │ ├── sdiv.asm │ │ │ │ │ ├── sub_n.asm │ │ │ │ │ ├── submul_1.asm │ │ │ │ │ └── umul.asm │ │ │ │ ├── powerpc32 │ │ │ │ │ ├── 750 │ │ │ │ │ │ ├── com.asm │ │ │ │ │ │ ├── gmp-mparam.h │ │ │ │ │ │ ├── lshift.asm │ │ │ │ │ │ └── rshift.asm │ │ │ │ │ ├── README │ │ │ │ │ ├── addlsh1_n.asm │ │ │ │ │ ├── addmul_1.asm │ │ │ │ │ ├── aix.m4 │ │ │ │ │ ├── aors_n.asm │ │ │ │ │ ├── bdiv_dbm1c.asm │ │ │ │ │ ├── darwin.m4 │ │ │ │ │ ├── diveby3.asm │ │ │ │ │ ├── divrem_2.asm │ │ │ │ │ ├── eabi.m4 │ │ │ │ │ ├── elf.m4 │ │ │ │ │ ├── gmp-mparam.h │ │ │ │ │ ├── invert_limb.asm │ │ │ │ │ ├── lshift.asm │ │ │ │ │ ├── lshiftc.asm │ │ │ │ │ ├── mod_34lsub1.asm │ │ │ │ │ ├── mode1o.asm │ │ │ │ │ ├── mul_1.asm │ │ │ │ │ ├── p3-p7 │ │ │ │ │ │ └── aors_n.asm │ │ │ │ │ ├── p3 │ │ │ │ │ │ └── gmp-mparam.h │ │ │ │ │ ├── p4 │ │ │ │ │ │ └── gmp-mparam.h │ │ │ │ │ ├── p5 │ │ │ │ │ │ └── gmp-mparam.h │ │ │ │ │ ├── p6 │ │ │ │ │ │ └── gmp-mparam.h │ │ │ │ │ ├── p7 │ │ │ │ │ │ └── gmp-mparam.h │ │ │ │ │ ├── powerpc-defs.m4 │ │ │ │ │ ├── rshift.asm │ │ │ │ │ ├── sec_tabselect.asm │ │ │ │ │ ├── sqr_diag_addlsh1.asm │ │ │ │ │ ├── sublsh1_n.asm │ │ │ │ │ ├── submul_1.asm │ │ │ │ │ ├── umul.asm │ │ │ │ │ └── vmx │ │ │ │ │ │ ├── copyd.asm │ │ │ │ │ │ ├── copyi.asm │ │ │ │ │ │ ├── logops_n.asm │ │ │ │ │ │ ├── mod_34lsub1.asm │ │ │ │ │ │ └── popcount.asm │ │ │ │ ├── powerpc64 │ │ │ │ │ ├── README │ │ │ │ │ ├── aix.m4 │ │ │ │ │ ├── com.asm │ │ │ │ │ ├── copyd.asm │ │ │ │ │ ├── copyi.asm │ │ │ │ │ ├── darwin.m4 │ │ │ │ │ ├── elf.m4 │ │ │ │ │ ├── logops_n.asm │ │ │ │ │ ├── lshift.asm │ │ │ │ │ ├── lshiftc.asm │ │ │ │ │ ├── mode32 │ │ │ │ │ │ ├── add_n.asm │ │ │ │ │ │ ├── addmul_1.asm │ │ │ │ │ │ ├── mul_1.asm │ │ │ │ │ │ ├── p4 │ │ │ │ │ │ │ └── gmp-mparam.h │ │ │ │ │ │ ├── sqr_diagonal.asm │ │ │ │ │ │ ├── sub_n.asm │ │ │ │ │ │ └── submul_1.asm │ │ │ │ │ ├── mode64 │ │ │ │ │ │ ├── aors_n.asm │ │ │ │ │ │ ├── aorsmul_1.asm │ │ │ │ │ │ ├── aorsorrlsh1_n.asm │ │ │ │ │ │ ├── aorsorrlsh2_n.asm │ │ │ │ │ │ ├── aorsorrlshC_n.asm │ │ │ │ │ │ ├── bdiv_dbm1c.asm │ │ │ │ │ │ ├── cnd_aors_n.asm │ │ │ │ │ │ ├── dive_1.asm │ │ │ │ │ │ ├── divrem_1.asm │ │ │ │ │ │ ├── divrem_2.asm │ │ │ │ │ │ ├── gcd_1.asm │ │ │ │ │ │ ├── gmp-mparam.h │ │ │ │ │ │ ├── invert_limb.asm │ │ │ │ │ │ ├── mod_1_1.asm │ │ │ │ │ │ ├── mod_1_4.asm │ │ │ │ │ │ ├── mod_34lsub1.asm │ │ │ │ │ │ ├── mode1o.asm │ │ │ │ │ │ ├── mul_1.asm │ │ │ │ │ │ ├── mul_basecase.asm │ │ │ │ │ │ ├── p3 │ │ │ │ │ │ │ └── gmp-mparam.h │ │ │ │ │ │ ├── p4 │ │ │ │ │ │ │ └── gmp-mparam.h │ │ │ │ │ │ ├── p5 │ │ │ │ │ │ │ └── gmp-mparam.h │ │ │ │ │ │ ├── p6 │ │ │ │ │ │ │ ├── aorsmul_1.asm │ │ │ │ │ │ │ ├── gmp-mparam.h │ │ │ │ │ │ │ └── mul_basecase.asm │ │ │ │ │ │ ├── p7 │ │ │ │ │ │ │ ├── aormul_2.asm │ │ │ │ │ │ │ ├── aors_n.asm │ │ │ │ │ │ │ ├── aorsorrlsh1_n.asm │ │ │ │ │ │ │ ├── aorsorrlsh2_n.asm │ │ │ │ │ │ │ ├── aorsorrlshC_n.asm │ │ │ │ │ │ │ ├── gcd_1.asm │ │ │ │ │ │ │ └── gmp-mparam.h │ │ │ │ │ │ ├── p8 │ │ │ │ │ │ │ └── invert_limb.asm │ │ │ │ │ │ ├── rsh1aors_n.asm │ │ │ │ │ │ └── sqr_basecase.asm │ │ │ │ │ ├── p6 │ │ │ │ │ │ ├── lshift.asm │ │ │ │ │ │ ├── lshiftc.asm │ │ │ │ │ │ └── rshift.asm │ │ │ │ │ ├── p7 │ │ │ │ │ │ ├── copyd.asm │ │ │ │ │ │ ├── copyi.asm │ │ │ │ │ │ ├── hamdist.asm │ │ │ │ │ │ └── popcount.asm │ │ │ │ │ ├── rshift.asm │ │ │ │ │ ├── sec_tabselect.asm │ │ │ │ │ ├── umul.asm │ │ │ │ │ └── vmx │ │ │ │ │ │ └── popcount.asm │ │ │ │ ├── s390_32 │ │ │ │ │ ├── README │ │ │ │ │ ├── addmul_1.asm │ │ │ │ │ ├── copyd.asm │ │ │ │ │ ├── copyi.asm │ │ │ │ │ ├── esame │ │ │ │ │ │ ├── addmul_1.asm │ │ │ │ │ │ ├── aors_n.asm │ │ │ │ │ │ ├── aorslsh1_n.asm │ │ │ │ │ │ ├── bdiv_dbm1c.asm │ │ │ │ │ │ ├── gmp-mparam.h │ │ │ │ │ │ ├── mul_1.asm │ │ │ │ │ │ ├── mul_basecase.asm │ │ │ │ │ │ ├── sqr_basecase.asm │ │ │ │ │ │ └── submul_1.asm │ │ │ │ │ ├── gmp-mparam.h │ │ │ │ │ ├── logops_n.asm │ │ │ │ │ ├── lshift.asm │ │ │ │ │ ├── lshiftc.asm │ │ │ │ │ ├── mul_1.asm │ │ │ │ │ ├── rshift.asm │ │ │ │ │ └── submul_1.asm │ │ │ │ ├── s390_64 │ │ │ │ │ ├── README │ │ │ │ │ ├── addmul_1.asm │ │ │ │ │ ├── aorrlsh1_n.asm │ │ │ │ │ ├── aors_n.asm │ │ │ │ │ ├── bdiv_dbm1c.asm │ │ │ │ │ ├── copyd.asm │ │ │ │ │ ├── copyi.asm │ │ │ │ │ ├── gmp-mparam.h │ │ │ │ │ ├── invert_limb.asm │ │ │ │ │ ├── logops_n.asm │ │ │ │ │ ├── lshift.asm │ │ │ │ │ ├── lshiftc.asm │ │ │ │ │ ├── mod_34lsub1.asm │ │ │ │ │ ├── mul_1.asm │ │ │ │ │ ├── mul_basecase.asm │ │ │ │ │ ├── rshift.asm │ │ │ │ │ ├── sqr_basecase.asm │ │ │ │ │ ├── sublsh1_n.asm │ │ │ │ │ ├── submul_1.asm │ │ │ │ │ └── z10 │ │ │ │ │ │ └── gmp-mparam.h │ │ │ │ ├── sh │ │ │ │ │ ├── add_n.asm │ │ │ │ │ ├── sh2 │ │ │ │ │ │ ├── addmul_1.asm │ │ │ │ │ │ ├── mul_1.asm │ │ │ │ │ │ └── submul_1.asm │ │ │ │ │ └── sub_n.asm │ │ │ │ ├── sparc32 │ │ │ │ │ ├── README │ │ │ │ │ ├── add_n.asm │ │ │ │ │ ├── addmul_1.asm │ │ │ │ │ ├── gmp-mparam.h │ │ │ │ │ ├── lshift.asm │ │ │ │ │ ├── mul_1.asm │ │ │ │ │ ├── rshift.asm │ │ │ │ │ ├── sparc-defs.m4 │ │ │ │ │ ├── sub_n.asm │ │ │ │ │ ├── submul_1.asm │ │ │ │ │ ├── udiv.asm │ │ │ │ │ ├── udiv_nfp.asm │ │ │ │ │ ├── ultrasparct1 │ │ │ │ │ │ ├── add_n.asm │ │ │ │ │ │ ├── addmul_1.asm │ │ │ │ │ │ ├── gmp-mparam.h │ │ │ │ │ │ ├── mul_1.asm │ │ │ │ │ │ ├── sqr_diagonal.asm │ │ │ │ │ │ ├── sub_n.asm │ │ │ │ │ │ └── submul_1.asm │ │ │ │ │ ├── umul.asm │ │ │ │ │ ├── v8 │ │ │ │ │ │ ├── addmul_1.asm │ │ │ │ │ │ ├── gmp-mparam.h │ │ │ │ │ │ ├── mul_1.asm │ │ │ │ │ │ ├── submul_1.asm │ │ │ │ │ │ ├── supersparc │ │ │ │ │ │ │ ├── gmp-mparam.h │ │ │ │ │ │ │ └── udiv.asm │ │ │ │ │ │ ├── udiv.asm │ │ │ │ │ │ └── umul.asm │ │ │ │ │ └── v9 │ │ │ │ │ │ ├── README │ │ │ │ │ │ ├── add_n.asm │ │ │ │ │ │ ├── addmul_1.asm │ │ │ │ │ │ ├── gmp-mparam.h │ │ │ │ │ │ ├── mul_1.asm │ │ │ │ │ │ ├── sqr_diagonal.asm │ │ │ │ │ │ ├── sub_n.asm │ │ │ │ │ │ ├── submul_1.asm │ │ │ │ │ │ └── udiv.asm │ │ │ │ ├── sparc64 │ │ │ │ │ ├── README │ │ │ │ │ ├── copyd.asm │ │ │ │ │ ├── copyi.asm │ │ │ │ │ ├── dive_1.c │ │ │ │ │ ├── divrem_1.c │ │ │ │ │ ├── gcd_1.asm │ │ │ │ │ ├── gmp-mparam.h │ │ │ │ │ ├── lshift.asm │ │ │ │ │ ├── lshiftc.asm │ │ │ │ │ ├── mod_1.c │ │ │ │ │ ├── mod_1_4.c │ │ │ │ │ ├── mode1o.c │ │ │ │ │ ├── rshift.asm │ │ │ │ │ ├── sec_tabselect.asm │ │ │ │ │ ├── sparc64.h │ │ │ │ │ ├── ultrasparc1234 │ │ │ │ │ │ ├── add_n.asm │ │ │ │ │ │ ├── addmul_1.asm │ │ │ │ │ │ ├── addmul_2.asm │ │ │ │ │ │ ├── lshiftc.asm │ │ │ │ │ │ ├── mul_1.asm │ │ │ │ │ │ ├── sqr_diagonal.asm │ │ │ │ │ │ ├── sub_n.asm │ │ │ │ │ │ └── submul_1.asm │ │ │ │ │ ├── ultrasparc34 │ │ │ │ │ │ └── gmp-mparam.h │ │ │ │ │ ├── ultrasparct1 │ │ │ │ │ │ ├── add_n.asm │ │ │ │ │ │ ├── addlsh1_n.asm │ │ │ │ │ │ ├── addlsh2_n.asm │ │ │ │ │ │ ├── addlshC_n.asm │ │ │ │ │ │ ├── addmul_1.asm │ │ │ │ │ │ ├── gmp-mparam.h │ │ │ │ │ │ ├── mul_1.asm │ │ │ │ │ │ ├── rsblsh1_n.asm │ │ │ │ │ │ ├── rsblsh2_n.asm │ │ │ │ │ │ ├── rsblshC_n.asm │ │ │ │ │ │ ├── sub_n.asm │ │ │ │ │ │ ├── sublsh1_n.asm │ │ │ │ │ │ ├── sublsh2_n.asm │ │ │ │ │ │ ├── sublshC_n.asm │ │ │ │ │ │ └── submul_1.asm │ │ │ │ │ └── ultrasparct3 │ │ │ │ │ │ ├── add_n.asm │ │ │ │ │ │ ├── addmul_1.asm │ │ │ │ │ │ ├── aormul_2.asm │ │ │ │ │ │ ├── aormul_4.asm │ │ │ │ │ │ ├── aorslsh_n.asm │ │ │ │ │ │ ├── bdiv_dbm1c.asm │ │ │ │ │ │ ├── cnd_aors_n.asm │ │ │ │ │ │ ├── dive_1.asm │ │ │ │ │ │ ├── hamdist.asm │ │ │ │ │ │ ├── invert_limb.asm │ │ │ │ │ │ ├── missing.asm │ │ │ │ │ │ ├── missing.m4 │ │ │ │ │ │ ├── mod_1_4.asm │ │ │ │ │ │ ├── mod_34lsub1.asm │ │ │ │ │ │ ├── mode1o.asm │ │ │ │ │ │ ├── mul_1.asm │ │ │ │ │ │ ├── popcount.asm │ │ │ │ │ │ ├── sqr_diag_addlsh1.asm │ │ │ │ │ │ ├── sub_n.asm │ │ │ │ │ │ └── submul_1.asm │ │ │ │ ├── thumb │ │ │ │ │ ├── add_n.asm │ │ │ │ │ └── sub_n.asm │ │ │ │ ├── tmp-udiv.s │ │ │ │ ├── vax │ │ │ │ │ ├── add_n.asm │ │ │ │ │ ├── addmul_1.asm │ │ │ │ │ ├── elf.m4 │ │ │ │ │ ├── gmp-mparam.h │ │ │ │ │ ├── lshift.asm │ │ │ │ │ ├── mul_1.asm │ │ │ │ │ ├── rshift.asm │ │ │ │ │ ├── sub_n.asm │ │ │ │ │ └── submul_1.asm │ │ │ │ ├── x86 │ │ │ │ │ ├── README │ │ │ │ │ ├── aors_n.asm │ │ │ │ │ ├── aorsmul_1.asm │ │ │ │ │ ├── atom │ │ │ │ │ │ ├── aorrlsh1_n.asm │ │ │ │ │ │ ├── aorrlsh2_n.asm │ │ │ │ │ │ ├── aorrlshC_n.asm │ │ │ │ │ │ ├── aors_n.asm │ │ │ │ │ │ ├── aorslshC_n.asm │ │ │ │ │ │ ├── bdiv_q_1.asm │ │ │ │ │ │ ├── cnd_add_n.asm │ │ │ │ │ │ ├── cnd_sub_n.asm │ │ │ │ │ │ ├── dive_1.asm │ │ │ │ │ │ ├── gmp-mparam.h │ │ │ │ │ │ ├── logops_n.asm │ │ │ │ │ │ ├── lshift.asm │ │ │ │ │ │ ├── lshiftc.asm │ │ │ │ │ │ ├── mmx │ │ │ │ │ │ │ ├── copyd.asm │ │ │ │ │ │ │ ├── copyi.asm │ │ │ │ │ │ │ └── hamdist.asm │ │ │ │ │ │ ├── mod_34lsub1.asm │ │ │ │ │ │ ├── mode1o.asm │ │ │ │ │ │ ├── rshift.asm │ │ │ │ │ │ ├── sse2 │ │ │ │ │ │ │ ├── aorsmul_1.asm │ │ │ │ │ │ │ ├── bdiv_dbm1c.asm │ │ │ │ │ │ │ ├── divrem_1.asm │ │ │ │ │ │ │ ├── mod_1_1.asm │ │ │ │ │ │ │ ├── mod_1_4.asm │ │ │ │ │ │ │ ├── mul_1.asm │ │ │ │ │ │ │ ├── mul_basecase.asm │ │ │ │ │ │ │ ├── popcount.asm │ │ │ │ │ │ │ └── sqr_basecase.asm │ │ │ │ │ │ ├── sublsh1_n.asm │ │ │ │ │ │ └── sublsh2_n.asm │ │ │ │ │ ├── bd1 │ │ │ │ │ │ └── gmp-mparam.h │ │ │ │ │ ├── bd2 │ │ │ │ │ │ └── gmp-mparam.h │ │ │ │ │ ├── bdiv_dbm1c.asm │ │ │ │ │ ├── bdiv_q_1.asm │ │ │ │ │ ├── bobcat │ │ │ │ │ │ └── gmp-mparam.h │ │ │ │ │ ├── cnd_aors_n.asm │ │ │ │ │ ├── copyd.asm │ │ │ │ │ ├── copyi.asm │ │ │ │ │ ├── core2 │ │ │ │ │ │ └── gmp-mparam.h │ │ │ │ │ ├── coreihwl │ │ │ │ │ │ └── gmp-mparam.h │ │ │ │ │ ├── coreinhm │ │ │ │ │ │ └── gmp-mparam.h │ │ │ │ │ ├── coreisbr │ │ │ │ │ │ └── gmp-mparam.h │ │ │ │ │ ├── darwin.m4 │ │ │ │ │ ├── dive_1.asm │ │ │ │ │ ├── divrem_1.asm │ │ │ │ │ ├── divrem_2.asm │ │ │ │ │ ├── fat │ │ │ │ │ │ ├── com.c │ │ │ │ │ │ ├── fat.c │ │ │ │ │ │ ├── fat_entry.asm │ │ │ │ │ │ ├── gcd_1.c │ │ │ │ │ │ ├── gmp-mparam.h │ │ │ │ │ │ ├── lshiftc.c │ │ │ │ │ │ ├── mod_1.c │ │ │ │ │ │ ├── mod_1_1.c │ │ │ │ │ │ ├── mod_1_2.c │ │ │ │ │ │ ├── mod_1_4.c │ │ │ │ │ │ ├── mode1o.c │ │ │ │ │ │ ├── mullo_basecase.c │ │ │ │ │ │ ├── redc_1.c │ │ │ │ │ │ └── redc_2.c │ │ │ │ │ ├── geode │ │ │ │ │ │ └── gmp-mparam.h │ │ │ │ │ ├── gmp-mparam.h │ │ │ │ │ ├── i486 │ │ │ │ │ │ └── gmp-mparam.h │ │ │ │ │ ├── k10 │ │ │ │ │ │ └── gmp-mparam.h │ │ │ │ │ ├── k6 │ │ │ │ │ │ ├── README │ │ │ │ │ │ ├── aors_n.asm │ │ │ │ │ │ ├── aorsmul_1.asm │ │ │ │ │ │ ├── cross.pl │ │ │ │ │ │ ├── divrem_1.asm │ │ │ │ │ │ ├── gcd_1.asm │ │ │ │ │ │ ├── gmp-mparam.h │ │ │ │ │ │ ├── k62mmx │ │ │ │ │ │ │ ├── copyd.asm │ │ │ │ │ │ │ ├── lshift.asm │ │ │ │ │ │ │ └── rshift.asm │ │ │ │ │ │ ├── mmx │ │ │ │ │ │ │ ├── com.asm │ │ │ │ │ │ │ ├── dive_1.asm │ │ │ │ │ │ │ ├── logops_n.asm │ │ │ │ │ │ │ ├── lshift.asm │ │ │ │ │ │ │ ├── popham.asm │ │ │ │ │ │ │ └── rshift.asm │ │ │ │ │ │ ├── mod_34lsub1.asm │ │ │ │ │ │ ├── mode1o.asm │ │ │ │ │ │ ├── mul_1.asm │ │ │ │ │ │ ├── mul_basecase.asm │ │ │ │ │ │ ├── pre_mod_1.asm │ │ │ │ │ │ └── sqr_basecase.asm │ │ │ │ │ ├── k7 │ │ │ │ │ │ ├── README │ │ │ │ │ │ ├── addlsh1_n.asm │ │ │ │ │ │ ├── aors_n.asm │ │ │ │ │ │ ├── aorsmul_1.asm │ │ │ │ │ │ ├── bdiv_q_1.asm │ │ │ │ │ │ ├── dive_1.asm │ │ │ │ │ │ ├── gcd_1.asm │ │ │ │ │ │ ├── gmp-mparam.h │ │ │ │ │ │ ├── invert_limb.asm │ │ │ │ │ │ ├── mmx │ │ │ │ │ │ │ ├── com.asm │ │ │ │ │ │ │ ├── copyd.asm │ │ │ │ │ │ │ ├── copyi.asm │ │ │ │ │ │ │ ├── divrem_1.asm │ │ │ │ │ │ │ ├── lshift.asm │ │ │ │ │ │ │ ├── popham.asm │ │ │ │ │ │ │ └── rshift.asm │ │ │ │ │ │ ├── mod_1_1.asm │ │ │ │ │ │ ├── mod_1_4.asm │ │ │ │ │ │ ├── mod_34lsub1.asm │ │ │ │ │ │ ├── mode1o.asm │ │ │ │ │ │ ├── mul_1.asm │ │ │ │ │ │ ├── mul_basecase.asm │ │ │ │ │ │ ├── sqr_basecase.asm │ │ │ │ │ │ └── sublsh1_n.asm │ │ │ │ │ ├── k8 │ │ │ │ │ │ └── gmp-mparam.h │ │ │ │ │ ├── lshift.asm │ │ │ │ │ ├── mmx │ │ │ │ │ │ └── sec_tabselect.asm │ │ │ │ │ ├── mod_34lsub1.asm │ │ │ │ │ ├── mul_1.asm │ │ │ │ │ ├── mul_basecase.asm │ │ │ │ │ ├── nano │ │ │ │ │ │ └── gmp-mparam.h │ │ │ │ │ ├── p6 │ │ │ │ │ │ ├── README │ │ │ │ │ │ ├── aors_n.asm │ │ │ │ │ │ ├── aorsmul_1.asm │ │ │ │ │ │ ├── bdiv_q_1.asm │ │ │ │ │ │ ├── copyd.asm │ │ │ │ │ │ ├── dive_1.asm │ │ │ │ │ │ ├── gcd_1.asm │ │ │ │ │ │ ├── gmp-mparam.h │ │ │ │ │ │ ├── lshsub_n.asm │ │ │ │ │ │ ├── mmx │ │ │ │ │ │ │ ├── divrem_1.asm │ │ │ │ │ │ │ ├── gmp-mparam.h │ │ │ │ │ │ │ ├── lshift.asm │ │ │ │ │ │ │ ├── popham.asm │ │ │ │ │ │ │ └── rshift.asm │ │ │ │ │ │ ├── mod_34lsub1.asm │ │ │ │ │ │ ├── mode1o.asm │ │ │ │ │ │ ├── mul_basecase.asm │ │ │ │ │ │ ├── p3mmx │ │ │ │ │ │ │ └── popham.asm │ │ │ │ │ │ ├── sqr_basecase.asm │ │ │ │ │ │ └── sse2 │ │ │ │ │ │ │ ├── addmul_1.asm │ │ │ │ │ │ │ ├── gmp-mparam.h │ │ │ │ │ │ │ ├── mod_1_1.asm │ │ │ │ │ │ │ ├── mod_1_4.asm │ │ │ │ │ │ │ ├── mul_1.asm │ │ │ │ │ │ │ ├── mul_basecase.asm │ │ │ │ │ │ │ ├── popcount.asm │ │ │ │ │ │ │ ├── sqr_basecase.asm │ │ │ │ │ │ │ └── submul_1.asm │ │ │ │ │ ├── pentium │ │ │ │ │ │ ├── README │ │ │ │ │ │ ├── aors_n.asm │ │ │ │ │ │ ├── aorsmul_1.asm │ │ │ │ │ │ ├── bdiv_q_1.asm │ │ │ │ │ │ ├── com.asm │ │ │ │ │ │ ├── copyd.asm │ │ │ │ │ │ ├── copyi.asm │ │ │ │ │ │ ├── dive_1.asm │ │ │ │ │ │ ├── gmp-mparam.h │ │ │ │ │ │ ├── hamdist.asm │ │ │ │ │ │ ├── logops_n.asm │ │ │ │ │ │ ├── lshift.asm │ │ │ │ │ │ ├── mmx │ │ │ │ │ │ │ ├── gmp-mparam.h │ │ │ │ │ │ │ ├── hamdist.asm │ │ │ │ │ │ │ ├── lshift.asm │ │ │ │ │ │ │ ├── mul_1.asm │ │ │ │ │ │ │ └── rshift.asm │ │ │ │ │ │ ├── mod_34lsub1.asm │ │ │ │ │ │ ├── mode1o.asm │ │ │ │ │ │ ├── mul_1.asm │ │ │ │ │ │ ├── mul_2.asm │ │ │ │ │ │ ├── mul_basecase.asm │ │ │ │ │ │ ├── popcount.asm │ │ │ │ │ │ ├── rshift.asm │ │ │ │ │ │ └── sqr_basecase.asm │ │ │ │ │ ├── pentium4 │ │ │ │ │ │ ├── README │ │ │ │ │ │ ├── copyd.asm │ │ │ │ │ │ ├── copyi.asm │ │ │ │ │ │ ├── mmx │ │ │ │ │ │ │ ├── lshift.asm │ │ │ │ │ │ │ ├── popham.asm │ │ │ │ │ │ │ └── rshift.asm │ │ │ │ │ │ └── sse2 │ │ │ │ │ │ │ ├── add_n.asm │ │ │ │ │ │ │ ├── addlsh1_n.asm │ │ │ │ │ │ │ ├── addmul_1.asm │ │ │ │ │ │ │ ├── bdiv_dbm1c.asm │ │ │ │ │ │ │ ├── bdiv_q_1.asm │ │ │ │ │ │ │ ├── cnd_add_n.asm │ │ │ │ │ │ │ ├── cnd_sub_n.asm │ │ │ │ │ │ │ ├── dive_1.asm │ │ │ │ │ │ │ ├── divrem_1.asm │ │ │ │ │ │ │ ├── gmp-mparam.h │ │ │ │ │ │ │ ├── mod_1_1.asm │ │ │ │ │ │ │ ├── mod_1_4.asm │ │ │ │ │ │ │ ├── mod_34lsub1.asm │ │ │ │ │ │ │ ├── mode1o.asm │ │ │ │ │ │ │ ├── mul_1.asm │ │ │ │ │ │ │ ├── mul_basecase.asm │ │ │ │ │ │ │ ├── popcount.asm │ │ │ │ │ │ │ ├── rsh1add_n.asm │ │ │ │ │ │ │ ├── sqr_basecase.asm │ │ │ │ │ │ │ ├── sub_n.asm │ │ │ │ │ │ │ └── submul_1.asm │ │ │ │ │ ├── rshift.asm │ │ │ │ │ ├── sec_tabselect.asm │ │ │ │ │ ├── sqr_basecase.asm │ │ │ │ │ ├── t-zdisp.sh │ │ │ │ │ ├── t-zdisp2.pl │ │ │ │ │ ├── udiv.asm │ │ │ │ │ ├── umul.asm │ │ │ │ │ └── x86-defs.m4 │ │ │ │ └── x86_64 │ │ │ │ │ ├── README │ │ │ │ │ ├── addaddmul_1msb0.asm │ │ │ │ │ ├── addmul_2.asm │ │ │ │ │ ├── aorrlsh1_n.asm │ │ │ │ │ ├── aorrlsh2_n.asm │ │ │ │ │ ├── aorrlshC_n.asm │ │ │ │ │ ├── aorrlsh_n.asm │ │ │ │ │ ├── aors_err1_n.asm │ │ │ │ │ ├── aors_err2_n.asm │ │ │ │ │ ├── aors_err3_n.asm │ │ │ │ │ ├── aors_n.asm │ │ │ │ │ ├── aorsmul_1.asm │ │ │ │ │ ├── atom │ │ │ │ │ ├── addmul_2.asm │ │ │ │ │ ├── aorrlsh1_n.asm │ │ │ │ │ ├── aorrlsh2_n.asm │ │ │ │ │ ├── aors_n.asm │ │ │ │ │ ├── aorsmul_1.asm │ │ │ │ │ ├── com.asm │ │ │ │ │ ├── copyd.asm │ │ │ │ │ ├── copyi.asm │ │ │ │ │ ├── dive_1.asm │ │ │ │ │ ├── gmp-mparam.h │ │ │ │ │ ├── lshift.asm │ │ │ │ │ ├── lshiftc.asm │ │ │ │ │ ├── mul_1.asm │ │ │ │ │ ├── mul_2.asm │ │ │ │ │ ├── popcount.asm │ │ │ │ │ ├── redc_1.asm │ │ │ │ │ ├── rsh1aors_n.asm │ │ │ │ │ ├── rshift.asm │ │ │ │ │ └── sublsh1_n.asm │ │ │ │ │ ├── bd1 │ │ │ │ │ ├── README │ │ │ │ │ ├── aorrlsh1_n.asm │ │ │ │ │ ├── aorsmul_1.asm │ │ │ │ │ ├── com.asm │ │ │ │ │ ├── copyd.asm │ │ │ │ │ ├── copyi.asm │ │ │ │ │ ├── gcd_1.asm │ │ │ │ │ ├── gmp-mparam.h │ │ │ │ │ ├── hamdist.asm │ │ │ │ │ ├── mul_1.asm │ │ │ │ │ ├── mul_2.asm │ │ │ │ │ ├── mul_basecase.asm │ │ │ │ │ ├── popcount.asm │ │ │ │ │ ├── sec_tabselect.asm │ │ │ │ │ └── sublsh1_n.asm │ │ │ │ │ ├── bd2 │ │ │ │ │ └── gmp-mparam.h │ │ │ │ │ ├── bdiv_dbm1c.asm │ │ │ │ │ ├── bdiv_q_1.asm │ │ │ │ │ ├── bobcat │ │ │ │ │ ├── aors_n.asm │ │ │ │ │ ├── aorsmul_1.asm │ │ │ │ │ ├── copyd.asm │ │ │ │ │ ├── copyi.asm │ │ │ │ │ ├── gmp-mparam.h │ │ │ │ │ ├── mul_1.asm │ │ │ │ │ ├── mul_basecase.asm │ │ │ │ │ ├── redc_1.asm │ │ │ │ │ └── sqr_basecase.asm │ │ │ │ │ ├── cnd_aors_n.asm │ │ │ │ │ ├── com.asm │ │ │ │ │ ├── copyd.asm │ │ │ │ │ ├── copyi.asm │ │ │ │ │ ├── core2 │ │ │ │ │ ├── aorrlsh1_n.asm │ │ │ │ │ ├── aorrlsh2_n.asm │ │ │ │ │ ├── aorrlsh_n.asm │ │ │ │ │ ├── aors_err1_n.asm │ │ │ │ │ ├── aors_n.asm │ │ │ │ │ ├── aorsmul_1.asm │ │ │ │ │ ├── copyd.asm │ │ │ │ │ ├── copyi.asm │ │ │ │ │ ├── divrem_1.asm │ │ │ │ │ ├── gcd_1.asm │ │ │ │ │ ├── gmp-mparam.h │ │ │ │ │ ├── lshift.asm │ │ │ │ │ ├── lshiftc.asm │ │ │ │ │ ├── mul_basecase.asm │ │ │ │ │ ├── mullo_basecase.asm │ │ │ │ │ ├── popcount.asm │ │ │ │ │ ├── redc_1.asm │ │ │ │ │ ├── rsh1aors_n.asm │ │ │ │ │ ├── rshift.asm │ │ │ │ │ ├── sec_tabselect.asm │ │ │ │ │ ├── sqr_basecase.asm │ │ │ │ │ ├── sublsh1_n.asm │ │ │ │ │ ├── sublsh2_n.asm │ │ │ │ │ └── sublshC_n.asm │ │ │ │ │ ├── coreibwl │ │ │ │ │ ├── addmul_1.asm │ │ │ │ │ ├── gmp-mparam.h │ │ │ │ │ ├── mul_1.asm │ │ │ │ │ ├── mul_basecase.asm │ │ │ │ │ └── sqr_basecase.asm │ │ │ │ │ ├── coreihwl │ │ │ │ │ ├── addmul_2.asm │ │ │ │ │ ├── aorsmul_1.asm │ │ │ │ │ ├── gmp-mparam.h │ │ │ │ │ ├── mul_1.asm │ │ │ │ │ ├── mul_2.asm │ │ │ │ │ ├── mul_basecase.asm │ │ │ │ │ ├── mullo_basecase.asm │ │ │ │ │ ├── redc_1.asm │ │ │ │ │ └── sqr_basecase.asm │ │ │ │ │ ├── coreinhm │ │ │ │ │ ├── aorrlsh_n.asm │ │ │ │ │ ├── aorsmul_1.asm │ │ │ │ │ ├── gmp-mparam.h │ │ │ │ │ ├── hamdist.asm │ │ │ │ │ ├── popcount.asm │ │ │ │ │ ├── redc_1.asm │ │ │ │ │ └── sec_tabselect.asm │ │ │ │ │ ├── coreisbr │ │ │ │ │ ├── addmul_2.asm │ │ │ │ │ ├── aorrlsh1_n.asm │ │ │ │ │ ├── aorrlsh2_n.asm │ │ │ │ │ ├── aorrlshC_n.asm │ │ │ │ │ ├── aorrlsh_n.asm │ │ │ │ │ ├── aors_n.asm │ │ │ │ │ ├── aorsmul_1.asm │ │ │ │ │ ├── divrem_1.asm │ │ │ │ │ ├── gmp-mparam.h │ │ │ │ │ ├── lshift.asm │ │ │ │ │ ├── lshiftc.asm │ │ │ │ │ ├── mul_1.asm │ │ │ │ │ ├── mul_2.asm │ │ │ │ │ ├── mul_basecase.asm │ │ │ │ │ ├── mullo_basecase.asm │ │ │ │ │ ├── popcount.asm │ │ │ │ │ ├── redc_1.asm │ │ │ │ │ ├── rsh1aors_n.asm │ │ │ │ │ ├── rshift.asm │ │ │ │ │ ├── sec_tabselect.asm │ │ │ │ │ └── sqr_basecase.asm │ │ │ │ │ ├── darwin.m4 │ │ │ │ │ ├── div_qr_1n_pi1.asm │ │ │ │ │ ├── div_qr_2n_pi1.asm │ │ │ │ │ ├── div_qr_2u_pi1.asm │ │ │ │ │ ├── dive_1.asm │ │ │ │ │ ├── divrem_1.asm │ │ │ │ │ ├── divrem_2.asm │ │ │ │ │ ├── dos64.m4 │ │ │ │ │ ├── fastavx │ │ │ │ │ ├── copyd.asm │ │ │ │ │ └── copyi.asm │ │ │ │ │ ├── fastsse │ │ │ │ │ ├── README │ │ │ │ │ ├── com-palignr.asm │ │ │ │ │ ├── com.asm │ │ │ │ │ ├── copyd-palignr.asm │ │ │ │ │ ├── copyd.asm │ │ │ │ │ ├── copyi-palignr.asm │ │ │ │ │ ├── copyi.asm │ │ │ │ │ ├── lshift-movdqu2.asm │ │ │ │ │ ├── lshift.asm │ │ │ │ │ ├── lshiftc-movdqu2.asm │ │ │ │ │ ├── lshiftc.asm │ │ │ │ │ ├── rshift-movdqu2.asm │ │ │ │ │ └── sec_tabselect.asm │ │ │ │ │ ├── fat │ │ │ │ │ ├── fat.c │ │ │ │ │ ├── fat_entry.asm │ │ │ │ │ ├── gmp-mparam.h │ │ │ │ │ ├── mod_1.c │ │ │ │ │ ├── mul_basecase.c │ │ │ │ │ ├── mullo_basecase.c │ │ │ │ │ ├── redc_1.c │ │ │ │ │ ├── redc_2.c │ │ │ │ │ └── sqr_basecase.c │ │ │ │ │ ├── gcd_1.asm │ │ │ │ │ ├── gmp-mparam.h │ │ │ │ │ ├── invert_limb.asm │ │ │ │ │ ├── invert_limb_table.asm │ │ │ │ │ ├── k10 │ │ │ │ │ ├── gcd_1.asm │ │ │ │ │ ├── gmp-mparam.h │ │ │ │ │ ├── hamdist.asm │ │ │ │ │ ├── lshift.asm │ │ │ │ │ ├── lshiftc.asm │ │ │ │ │ ├── popcount.asm │ │ │ │ │ ├── rshift.asm │ │ │ │ │ └── sec_tabselect.asm │ │ │ │ │ ├── k8 │ │ │ │ │ ├── aorrlsh_n.asm │ │ │ │ │ ├── div_qr_1n_pi1.asm │ │ │ │ │ ├── gmp-mparam.h │ │ │ │ │ ├── mul_basecase.asm │ │ │ │ │ ├── mullo_basecase.asm │ │ │ │ │ ├── mulmid_basecase.asm │ │ │ │ │ ├── redc_1.asm │ │ │ │ │ └── sqr_basecase.asm │ │ │ │ │ ├── logops_n.asm │ │ │ │ │ ├── lshift.asm │ │ │ │ │ ├── lshiftc.asm │ │ │ │ │ ├── lshsub_n.asm │ │ │ │ │ ├── missing-call.m4 │ │ │ │ │ ├── missing-inline.m4 │ │ │ │ │ ├── missing.asm │ │ │ │ │ ├── mod_1_1.asm │ │ │ │ │ ├── mod_1_2.asm │ │ │ │ │ ├── mod_1_4.asm │ │ │ │ │ ├── mod_34lsub1.asm │ │ │ │ │ ├── mode1o.asm │ │ │ │ │ ├── mul_1.asm │ │ │ │ │ ├── mul_2.asm │ │ │ │ │ ├── mulx │ │ │ │ │ ├── adx │ │ │ │ │ │ └── addmul_1.asm │ │ │ │ │ ├── aorsmul_1.asm │ │ │ │ │ └── mul_1.asm │ │ │ │ │ ├── nano │ │ │ │ │ ├── copyd.asm │ │ │ │ │ ├── copyi.asm │ │ │ │ │ ├── dive_1.asm │ │ │ │ │ ├── gcd_1.asm │ │ │ │ │ ├── gmp-mparam.h │ │ │ │ │ └── popcount.asm │ │ │ │ │ ├── pentium4 │ │ │ │ │ ├── aors_n.asm │ │ │ │ │ ├── aorslsh1_n.asm │ │ │ │ │ ├── aorslsh2_n.asm │ │ │ │ │ ├── aorslshC_n.asm │ │ │ │ │ ├── gmp-mparam.h │ │ │ │ │ ├── lshift.asm │ │ │ │ │ ├── lshiftc.asm │ │ │ │ │ ├── mod_34lsub1.asm │ │ │ │ │ ├── popcount.asm │ │ │ │ │ ├── rsh1aors_n.asm │ │ │ │ │ ├── rshift.asm │ │ │ │ │ └── sec_tabselect.asm │ │ │ │ │ ├── popham.asm │ │ │ │ │ ├── rsh1aors_n.asm │ │ │ │ │ ├── rshift.asm │ │ │ │ │ ├── sec_tabselect.asm │ │ │ │ │ ├── skylake │ │ │ │ │ └── gmp-mparam.h │ │ │ │ │ ├── sqr_diag_addlsh1.asm │ │ │ │ │ ├── sublsh1_n.asm │ │ │ │ │ └── x86_64-defs.m4 │ │ │ ├── mpq │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── Makefile~ │ │ │ │ ├── abs.c │ │ │ │ ├── aors.c │ │ │ │ ├── canonicalize.c │ │ │ │ ├── clear.c │ │ │ │ ├── clears.c │ │ │ │ ├── cmp.c │ │ │ │ ├── cmp_si.c │ │ │ │ ├── cmp_ui.c │ │ │ │ ├── div.c │ │ │ │ ├── equal.c │ │ │ │ ├── get_d.c │ │ │ │ ├── get_den.c │ │ │ │ ├── get_num.c │ │ │ │ ├── get_str.c │ │ │ │ ├── init.c │ │ │ │ ├── inits.c │ │ │ │ ├── inp_str.c │ │ │ │ ├── inv.c │ │ │ │ ├── md_2exp.c │ │ │ │ ├── mul.c │ │ │ │ ├── neg.c │ │ │ │ ├── out_str.c │ │ │ │ ├── set.c │ │ │ │ ├── set_d.c │ │ │ │ ├── set_den.c │ │ │ │ ├── set_f.c │ │ │ │ ├── set_num.c │ │ │ │ ├── set_si.c │ │ │ │ ├── set_str.c │ │ │ │ ├── set_ui.c │ │ │ │ ├── set_z.c │ │ │ │ └── swap.c │ │ │ ├── mpz │ │ │ │ ├── 2fac_ui.c │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── Makefile~ │ │ │ │ ├── abs.c │ │ │ │ ├── add.c │ │ │ │ ├── add_ui.c │ │ │ │ ├── and.c │ │ │ │ ├── aors.h │ │ │ │ ├── aors_ui.h │ │ │ │ ├── aorsmul.c │ │ │ │ ├── aorsmul_i.c │ │ │ │ ├── array_init.c │ │ │ │ ├── bin_ui.c │ │ │ │ ├── bin_uiui.c │ │ │ │ ├── cdiv_q.c │ │ │ │ ├── cdiv_q_ui.c │ │ │ │ ├── cdiv_qr.c │ │ │ │ ├── cdiv_qr_ui.c │ │ │ │ ├── cdiv_r.c │ │ │ │ ├── cdiv_r_ui.c │ │ │ │ ├── cdiv_ui.c │ │ │ │ ├── cfdiv_q_2exp.c │ │ │ │ ├── cfdiv_r_2exp.c │ │ │ │ ├── clear.c │ │ │ │ ├── clears.c │ │ │ │ ├── clrbit.c │ │ │ │ ├── cmp.c │ │ │ │ ├── cmp_d.c │ │ │ │ ├── cmp_si.c │ │ │ │ ├── cmp_ui.c │ │ │ │ ├── cmpabs.c │ │ │ │ ├── cmpabs_d.c │ │ │ │ ├── cmpabs_ui.c │ │ │ │ ├── com.c │ │ │ │ ├── combit.c │ │ │ │ ├── cong.c │ │ │ │ ├── cong_2exp.c │ │ │ │ ├── cong_ui.c │ │ │ │ ├── dive_ui.c │ │ │ │ ├── divegcd.c │ │ │ │ ├── divexact.c │ │ │ │ ├── divis.c │ │ │ │ ├── divis_2exp.c │ │ │ │ ├── divis_ui.c │ │ │ │ ├── dump.c │ │ │ │ ├── export.c │ │ │ │ ├── fac_ui.c │ │ │ │ ├── fdiv_q.c │ │ │ │ ├── fdiv_q_ui.c │ │ │ │ ├── fdiv_qr.c │ │ │ │ ├── fdiv_qr_ui.c │ │ │ │ ├── fdiv_r.c │ │ │ │ ├── fdiv_r_ui.c │ │ │ │ ├── fdiv_ui.c │ │ │ │ ├── fib2_ui.c │ │ │ │ ├── fib_ui.c │ │ │ │ ├── fits_s.h │ │ │ │ ├── fits_sint.c │ │ │ │ ├── fits_slong.c │ │ │ │ ├── fits_sshort.c │ │ │ │ ├── fits_uint.c │ │ │ │ ├── fits_ulong.c │ │ │ │ ├── fits_ushort.c │ │ │ │ ├── gcd.c │ │ │ │ ├── gcd_ui.c │ │ │ │ ├── gcdext.c │ │ │ │ ├── get_d.c │ │ │ │ ├── get_d_2exp.c │ │ │ │ ├── get_si.c │ │ │ │ ├── get_str.c │ │ │ │ ├── get_ui.c │ │ │ │ ├── getlimbn.c │ │ │ │ ├── hamdist.c │ │ │ │ ├── import.c │ │ │ │ ├── init.c │ │ │ │ ├── init2.c │ │ │ │ ├── inits.c │ │ │ │ ├── inp_raw.c │ │ │ │ ├── inp_str.c │ │ │ │ ├── invert.c │ │ │ │ ├── ior.c │ │ │ │ ├── iset.c │ │ │ │ ├── iset_d.c │ │ │ │ ├── iset_si.c │ │ │ │ ├── iset_str.c │ │ │ │ ├── iset_ui.c │ │ │ │ ├── jacobi.c │ │ │ │ ├── kronsz.c │ │ │ │ ├── kronuz.c │ │ │ │ ├── kronzs.c │ │ │ │ ├── kronzu.c │ │ │ │ ├── lcm.c │ │ │ │ ├── lcm_ui.c │ │ │ │ ├── limbs_finish.c │ │ │ │ ├── limbs_modify.c │ │ │ │ ├── limbs_read.c │ │ │ │ ├── limbs_write.c │ │ │ │ ├── lucnum2_ui.c │ │ │ │ ├── lucnum_ui.c │ │ │ │ ├── mfac_uiui.c │ │ │ │ ├── millerrabin.c │ │ │ │ ├── mod.c │ │ │ │ ├── mul.c │ │ │ │ ├── mul_2exp.c │ │ │ │ ├── mul_i.h │ │ │ │ ├── mul_si.c │ │ │ │ ├── mul_ui.c │ │ │ │ ├── n_pow_ui.c │ │ │ │ ├── neg.c │ │ │ │ ├── nextprime.c │ │ │ │ ├── oddfac_1.c │ │ │ │ ├── out_raw.c │ │ │ │ ├── out_str.c │ │ │ │ ├── perfpow.c │ │ │ │ ├── perfsqr.c │ │ │ │ ├── popcount.c │ │ │ │ ├── pow_ui.c │ │ │ │ ├── powm.c │ │ │ │ ├── powm_sec.c │ │ │ │ ├── powm_ui.c │ │ │ │ ├── pprime_p.c │ │ │ │ ├── primorial_ui.c │ │ │ │ ├── prodlimbs.c │ │ │ │ ├── random.c │ │ │ │ ├── random2.c │ │ │ │ ├── realloc.c │ │ │ │ ├── realloc2.c │ │ │ │ ├── remove.c │ │ │ │ ├── roinit_n.c │ │ │ │ ├── root.c │ │ │ │ ├── rootrem.c │ │ │ │ ├── rrandomb.c │ │ │ │ ├── scan0.c │ │ │ │ ├── scan1.c │ │ │ │ ├── set.c │ │ │ │ ├── set_d.c │ │ │ │ ├── set_f.c │ │ │ │ ├── set_q.c │ │ │ │ ├── set_si.c │ │ │ │ ├── set_str.c │ │ │ │ ├── set_ui.c │ │ │ │ ├── setbit.c │ │ │ │ ├── size.c │ │ │ │ ├── sizeinbase.c │ │ │ │ ├── sqrt.c │ │ │ │ ├── sqrtrem.c │ │ │ │ ├── sub.c │ │ │ │ ├── sub_ui.c │ │ │ │ ├── swap.c │ │ │ │ ├── tdiv_q.c │ │ │ │ ├── tdiv_q_2exp.c │ │ │ │ ├── tdiv_q_ui.c │ │ │ │ ├── tdiv_qr.c │ │ │ │ ├── tdiv_qr_ui.c │ │ │ │ ├── tdiv_r.c │ │ │ │ ├── tdiv_r_2exp.c │ │ │ │ ├── tdiv_r_ui.c │ │ │ │ ├── tdiv_ui.c │ │ │ │ ├── tstbit.c │ │ │ │ ├── ui_pow_ui.c │ │ │ │ ├── ui_sub.c │ │ │ │ ├── urandomb.c │ │ │ │ ├── urandomm.c │ │ │ │ └── xor.c │ │ │ ├── nextprime.c │ │ │ ├── primesieve.c │ │ │ ├── printf │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── Makefile~ │ │ │ │ ├── asprintf.c │ │ │ │ ├── asprntffuns.c │ │ │ │ ├── doprnt.c │ │ │ │ ├── doprntf.c │ │ │ │ ├── doprnti.c │ │ │ │ ├── fprintf.c │ │ │ │ ├── obprintf.c │ │ │ │ ├── obprntffuns.c │ │ │ │ ├── obvprintf.c │ │ │ │ ├── printf.c │ │ │ │ ├── printffuns.c │ │ │ │ ├── repl-vsnprintf.c │ │ │ │ ├── repl-vsnprintf.c~ │ │ │ │ ├── snprintf.c │ │ │ │ ├── snprntffuns.c │ │ │ │ ├── sprintf.c │ │ │ │ ├── sprintffuns.c │ │ │ │ ├── vasprintf.c │ │ │ │ ├── vfprintf.c │ │ │ │ ├── vprintf.c │ │ │ │ ├── vsnprintf.c │ │ │ │ └── vsprintf.c │ │ │ ├── rand │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── Makefile~ │ │ │ │ ├── rand.c │ │ │ │ ├── randbui.c │ │ │ │ ├── randclr.c │ │ │ │ ├── randdef.c │ │ │ │ ├── randiset.c │ │ │ │ ├── randlc2s.c │ │ │ │ ├── randlc2x.c │ │ │ │ ├── randmt.c │ │ │ │ ├── randmt.h │ │ │ │ ├── randmts.c │ │ │ │ ├── randmui.c │ │ │ │ ├── rands.c │ │ │ │ ├── randsd.c │ │ │ │ └── randsdui.c │ │ │ ├── scanf │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── Makefile~ │ │ │ │ ├── doscan.c │ │ │ │ ├── fscanf.c │ │ │ │ ├── fscanffuns.c │ │ │ │ ├── scanf.c │ │ │ │ ├── sscanf.c │ │ │ │ ├── sscanffuns.c │ │ │ │ ├── vfscanf.c │ │ │ │ ├── vscanf.c │ │ │ │ └── vsscanf.c │ │ │ ├── stamp-h1 │ │ │ ├── tal-debug.c │ │ │ ├── tal-notreent.c │ │ │ ├── tal-reent.c │ │ │ ├── test-driver │ │ │ ├── tests │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── amd64call.asm │ │ │ │ ├── amd64check.c │ │ │ │ ├── arm32call.asm │ │ │ │ ├── arm32check.c │ │ │ │ ├── cxx │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── clocale.c │ │ │ │ │ ├── t-assign.cc │ │ │ │ │ ├── t-binary.cc │ │ │ │ │ ├── t-cast.cc │ │ │ │ │ ├── t-constr.cc │ │ │ │ │ ├── t-cxx11.cc │ │ │ │ │ ├── t-do-exceptions-work-at-all-with-this-compiler.cc │ │ │ │ │ ├── t-headers.cc │ │ │ │ │ ├── t-iostream.cc │ │ │ │ │ ├── t-istream.cc │ │ │ │ │ ├── t-locale.cc │ │ │ │ │ ├── t-misc.cc │ │ │ │ │ ├── t-mix.cc │ │ │ │ │ ├── t-ops.cc │ │ │ │ │ ├── t-ops2.cc │ │ │ │ │ ├── t-ops3.cc │ │ │ │ │ ├── t-ostream.cc │ │ │ │ │ ├── t-prec.cc │ │ │ │ │ ├── t-rand.cc │ │ │ │ │ ├── t-ternary.cc │ │ │ │ │ └── t-unary.cc │ │ │ │ ├── devel │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── README │ │ │ │ │ ├── anymul_1.c │ │ │ │ │ ├── aors_n.c │ │ │ │ │ ├── copy.c │ │ │ │ │ ├── divmod_1.c │ │ │ │ │ ├── divrem.c │ │ │ │ │ ├── logops_n.c │ │ │ │ │ ├── shift.c │ │ │ │ │ ├── try.c │ │ │ │ │ └── tst-addsub.c │ │ │ │ ├── memory.c │ │ │ │ ├── misc.c │ │ │ │ ├── misc │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── t-locale.c │ │ │ │ │ ├── t-printf.c │ │ │ │ │ └── t-scanf.c │ │ │ │ ├── mpf │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── reuse.c │ │ │ │ │ ├── t-add.c │ │ │ │ │ ├── t-cmp_d.c │ │ │ │ │ ├── t-cmp_si.c │ │ │ │ │ ├── t-conv.c │ │ │ │ │ ├── t-div.c │ │ │ │ │ ├── t-dm2exp.c │ │ │ │ │ ├── t-eq.c │ │ │ │ │ ├── t-fits.c │ │ │ │ │ ├── t-get_d.c │ │ │ │ │ ├── t-get_d_2exp.c │ │ │ │ │ ├── t-get_si.c │ │ │ │ │ ├── t-get_ui.c │ │ │ │ │ ├── t-gsprec.c │ │ │ │ │ ├── t-inp_str.c │ │ │ │ │ ├── t-int_p.c │ │ │ │ │ ├── t-mul_ui.c │ │ │ │ │ ├── t-muldiv.c │ │ │ │ │ ├── t-pow_ui.c │ │ │ │ │ ├── t-set.c │ │ │ │ │ ├── t-set_q.c │ │ │ │ │ ├── t-set_si.c │ │ │ │ │ ├── t-set_ui.c │ │ │ │ │ ├── t-sqrt.c │ │ │ │ │ ├── t-sqrt_ui.c │ │ │ │ │ ├── t-sub.c │ │ │ │ │ ├── t-trunc.c │ │ │ │ │ └── t-ui_div.c │ │ │ │ ├── mpn │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── logic.c │ │ │ │ │ ├── t-aors_1.c │ │ │ │ │ ├── t-asmtype.c │ │ │ │ │ ├── t-bdiv.c │ │ │ │ │ ├── t-broot.c │ │ │ │ │ ├── t-brootinv.c │ │ │ │ │ ├── t-div.c │ │ │ │ │ ├── t-divrem_1.c │ │ │ │ │ ├── t-fat.c │ │ │ │ │ ├── t-get_d.c │ │ │ │ │ ├── t-hgcd.c │ │ │ │ │ ├── t-hgcd_appr.c │ │ │ │ │ ├── t-instrument.c │ │ │ │ │ ├── t-invert.c │ │ │ │ │ ├── t-iord_u.c │ │ │ │ │ ├── t-matrix22.c │ │ │ │ │ ├── t-minvert.c │ │ │ │ │ ├── t-mod_1.c │ │ │ │ │ ├── t-mp_bases.c │ │ │ │ │ ├── t-mul.c │ │ │ │ │ ├── t-mullo.c │ │ │ │ │ ├── t-mulmid.c │ │ │ │ │ ├── t-mulmod_bnm1.c │ │ │ │ │ ├── t-perfsqr.c │ │ │ │ │ ├── t-scan.c │ │ │ │ │ ├── t-sizeinbase.c │ │ │ │ │ ├── t-sqrlo.c │ │ │ │ │ ├── t-sqrmod_bnm1.c │ │ │ │ │ ├── t-toom2-sqr.c │ │ │ │ │ ├── t-toom22.c │ │ │ │ │ ├── t-toom3-sqr.c │ │ │ │ │ ├── t-toom32.c │ │ │ │ │ ├── t-toom33.c │ │ │ │ │ ├── t-toom4-sqr.c │ │ │ │ │ ├── t-toom42.c │ │ │ │ │ ├── t-toom43.c │ │ │ │ │ ├── t-toom44.c │ │ │ │ │ ├── t-toom52.c │ │ │ │ │ ├── t-toom53.c │ │ │ │ │ ├── t-toom54.c │ │ │ │ │ ├── t-toom6-sqr.c │ │ │ │ │ ├── t-toom62.c │ │ │ │ │ ├── t-toom63.c │ │ │ │ │ ├── t-toom6h.c │ │ │ │ │ ├── t-toom8-sqr.c │ │ │ │ │ ├── t-toom8h.c │ │ │ │ │ ├── toom-shared.h │ │ │ │ │ └── toom-sqr-shared.h │ │ │ │ ├── mpq │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── io.c │ │ │ │ │ ├── reuse.c │ │ │ │ │ ├── t-aors.c │ │ │ │ │ ├── t-cmp.c │ │ │ │ │ ├── t-cmp_si.c │ │ │ │ │ ├── t-cmp_ui.c │ │ │ │ │ ├── t-cmp_z.c │ │ │ │ │ ├── t-equal.c │ │ │ │ │ ├── t-get_d.c │ │ │ │ │ ├── t-get_str.c │ │ │ │ │ ├── t-inp_str.c │ │ │ │ │ ├── t-inv.c │ │ │ │ │ ├── t-md_2exp.c │ │ │ │ │ ├── t-set_f.c │ │ │ │ │ └── t-set_str.c │ │ │ │ ├── mpz │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── bit.c │ │ │ │ │ ├── convert.c │ │ │ │ │ ├── dive.c │ │ │ │ │ ├── dive_ui.c │ │ │ │ │ ├── io.c │ │ │ │ │ ├── logic.c │ │ │ │ │ ├── reuse.c │ │ │ │ │ ├── t-addsub.c │ │ │ │ │ ├── t-aorsmul.c │ │ │ │ │ ├── t-bin.c │ │ │ │ │ ├── t-cdiv_ui.c │ │ │ │ │ ├── t-cmp.c │ │ │ │ │ ├── t-cmp_d.c │ │ │ │ │ ├── t-cmp_si.c │ │ │ │ │ ├── t-cong.c │ │ │ │ │ ├── t-cong_2exp.c │ │ │ │ │ ├── t-div_2exp.c │ │ │ │ │ ├── t-divis.c │ │ │ │ │ ├── t-divis_2exp.c │ │ │ │ │ ├── t-export.c │ │ │ │ │ ├── t-fac_ui.c │ │ │ │ │ ├── t-fdiv.c │ │ │ │ │ ├── t-fdiv_ui.c │ │ │ │ │ ├── t-fib_ui.c │ │ │ │ │ ├── t-fits.c │ │ │ │ │ ├── t-gcd.c │ │ │ │ │ ├── t-gcd_ui.c │ │ │ │ │ ├── t-get_d.c │ │ │ │ │ ├── t-get_d_2exp.c │ │ │ │ │ ├── t-get_si.c │ │ │ │ │ ├── t-hamdist.c │ │ │ │ │ ├── t-import.c │ │ │ │ │ ├── t-inp_str.c │ │ │ │ │ ├── t-invert.c │ │ │ │ │ ├── t-io_raw.c │ │ │ │ │ ├── t-jac.c │ │ │ │ │ ├── t-lcm.c │ │ │ │ │ ├── t-limbs.c │ │ │ │ │ ├── t-lucnum_ui.c │ │ │ │ │ ├── t-mfac_uiui.c │ │ │ │ │ ├── t-mul.c │ │ │ │ │ ├── t-mul_i.c │ │ │ │ │ ├── t-nextprime.c │ │ │ │ │ ├── t-oddeven.c │ │ │ │ │ ├── t-perfpow.c │ │ │ │ │ ├── t-perfsqr.c │ │ │ │ │ ├── t-popcount.c │ │ │ │ │ ├── t-pow.c │ │ │ │ │ ├── t-powm.c │ │ │ │ │ ├── t-powm_ui.c │ │ │ │ │ ├── t-pprime_p.c │ │ │ │ │ ├── t-primorial_ui.c │ │ │ │ │ ├── t-remove.c │ │ │ │ │ ├── t-root.c │ │ │ │ │ ├── t-scan.c │ │ │ │ │ ├── t-set_d.c │ │ │ │ │ ├── t-set_f.c │ │ │ │ │ ├── t-set_si.c │ │ │ │ │ ├── t-set_str.c │ │ │ │ │ ├── t-sizeinbase.c │ │ │ │ │ ├── t-sqrtrem.c │ │ │ │ │ ├── t-tdiv.c │ │ │ │ │ └── t-tdiv_ui.c │ │ │ │ ├── rand │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── findlc.c │ │ │ │ │ ├── gen.c │ │ │ │ │ ├── gmpstat.h │ │ │ │ │ ├── spect.c │ │ │ │ │ ├── stat.c │ │ │ │ │ ├── statlib.c │ │ │ │ │ ├── t-iset.c │ │ │ │ │ ├── t-lc2exp.c │ │ │ │ │ ├── t-mt.c │ │ │ │ │ ├── t-rand.c │ │ │ │ │ ├── t-urbui.c │ │ │ │ │ ├── t-urmui.c │ │ │ │ │ ├── t-urndmm.c │ │ │ │ │ └── zdiv_round.c │ │ │ │ ├── refmpf.c │ │ │ │ ├── refmpn.c │ │ │ │ ├── refmpq.c │ │ │ │ ├── refmpz.c │ │ │ │ ├── spinner.c │ │ │ │ ├── t-bswap.c │ │ │ │ ├── t-constants.c │ │ │ │ ├── t-count_zeros.c │ │ │ │ ├── t-hightomask.c │ │ │ │ ├── t-modlinv.c │ │ │ │ ├── t-parity.c │ │ │ │ ├── t-popc.c │ │ │ │ ├── t-sub.c │ │ │ │ ├── tests.h │ │ │ │ ├── trace.c │ │ │ │ ├── x86call.asm │ │ │ │ └── x86check.c │ │ │ ├── trialdivtab.h │ │ │ ├── tune │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── README │ │ │ │ ├── alpha.asm │ │ │ │ ├── common.c │ │ │ │ ├── div_qr_1_tune.c │ │ │ │ ├── div_qr_1n_pi1_1.c │ │ │ │ ├── div_qr_1n_pi1_2.c │ │ │ │ ├── divrem1div.c │ │ │ │ ├── divrem1inv.c │ │ │ │ ├── divrem2div.c │ │ │ │ ├── divrem2inv.c │ │ │ │ ├── freq.c │ │ │ │ ├── gcdext_double.c │ │ │ │ ├── gcdext_single.c │ │ │ │ ├── gcdextod.c │ │ │ │ ├── gcdextos.c │ │ │ │ ├── hgcd_appr_lehmer.c │ │ │ │ ├── hgcd_lehmer.c │ │ │ │ ├── hgcd_reduce_1.c │ │ │ │ ├── hgcd_reduce_2.c │ │ │ │ ├── hppa.asm │ │ │ │ ├── hppa2.asm │ │ │ │ ├── hppa2w.asm │ │ │ │ ├── ia64.asm │ │ │ │ ├── jacbase1.c │ │ │ │ ├── jacbase2.c │ │ │ │ ├── jacbase3.c │ │ │ │ ├── jacbase4.c │ │ │ │ ├── many.pl │ │ │ │ ├── mod_1_1-1.c │ │ │ │ ├── mod_1_1-2.c │ │ │ │ ├── mod_1_div.c │ │ │ │ ├── mod_1_inv.c │ │ │ │ ├── modlinv.c │ │ │ │ ├── noop.c │ │ │ │ ├── pentium.asm │ │ │ │ ├── powerpc.asm │ │ │ │ ├── powerpc64.asm │ │ │ │ ├── powm_mod.c │ │ │ │ ├── powm_redc.c │ │ │ │ ├── pre_divrem_1.c │ │ │ │ ├── set_strb.c │ │ │ │ ├── set_strp.c │ │ │ │ ├── set_strs.c │ │ │ │ ├── sparcv9.asm │ │ │ │ ├── speed-ext.c │ │ │ │ ├── speed.c │ │ │ │ ├── speed.h │ │ │ │ ├── sqr_basecase.c │ │ │ │ ├── time.c │ │ │ │ ├── tune-gcd-p.c │ │ │ │ ├── tuneup.c │ │ │ │ └── x86_64.asm │ │ │ ├── version.c │ │ │ └── ylwrap │ │ ├── gmp │ │ │ └── include │ │ │ │ ├── gmp.h │ │ │ │ ├── longlong.h │ │ │ │ ├── mpfi.h │ │ │ │ └── mpfr.h │ │ └── libtommath-0.39 │ │ │ ├── .gitignore │ │ │ ├── CVS │ │ │ ├── Entries │ │ │ ├── Repository │ │ │ └── Root │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── Makefile.39gii │ │ │ ├── Makefile.iphone │ │ │ ├── Makefile.n110 │ │ │ ├── Makefile.simuphone │ │ │ ├── bn.tex │ │ │ ├── bn_error.c │ │ │ ├── bn_fast_mp_invmod.c │ │ │ ├── bn_fast_mp_montgomery_reduce.c │ │ │ ├── bn_fast_s_mp_mul_digs.c │ │ │ ├── bn_fast_s_mp_mul_high_digs.c │ │ │ ├── bn_fast_s_mp_sqr.c │ │ │ ├── bn_mp_2expt.c │ │ │ ├── bn_mp_abs.c │ │ │ ├── bn_mp_add.c │ │ │ ├── bn_mp_add_d.c │ │ │ ├── bn_mp_addmod.c │ │ │ ├── bn_mp_and.c │ │ │ ├── bn_mp_clamp.c │ │ │ ├── bn_mp_clear.c │ │ │ ├── bn_mp_clear_multi.c │ │ │ ├── bn_mp_cmp.c │ │ │ ├── bn_mp_cmp_d.c │ │ │ ├── bn_mp_cmp_mag.c │ │ │ ├── bn_mp_cnt_lsb.c │ │ │ ├── bn_mp_copy.c │ │ │ ├── bn_mp_count_bits.c │ │ │ ├── bn_mp_div.c │ │ │ ├── bn_mp_div_2.c │ │ │ ├── bn_mp_div_2d.c │ │ │ ├── bn_mp_div_3.c │ │ │ ├── bn_mp_div_d.c │ │ │ ├── bn_mp_dr_is_modulus.c │ │ │ ├── bn_mp_dr_reduce.c │ │ │ ├── bn_mp_dr_setup.c │ │ │ ├── bn_mp_exch.c │ │ │ ├── bn_mp_expt_d.c │ │ │ ├── bn_mp_exptmod.c │ │ │ ├── bn_mp_exptmod_fast.c │ │ │ ├── bn_mp_exteuclid.c │ │ │ ├── bn_mp_fread.c │ │ │ ├── bn_mp_fwrite.c │ │ │ ├── bn_mp_gcd.c │ │ │ ├── bn_mp_get_int.c │ │ │ ├── bn_mp_grow.c │ │ │ ├── bn_mp_init.c │ │ │ ├── bn_mp_init_copy.c │ │ │ ├── bn_mp_init_multi.c │ │ │ ├── bn_mp_init_set.c │ │ │ ├── bn_mp_init_set_int.c │ │ │ ├── bn_mp_init_size.c │ │ │ ├── bn_mp_invmod.c │ │ │ ├── bn_mp_invmod_slow.c │ │ │ ├── bn_mp_is_square.c │ │ │ ├── bn_mp_jacobi.c │ │ │ ├── bn_mp_karatsuba_mul.c │ │ │ ├── bn_mp_karatsuba_sqr.c │ │ │ ├── bn_mp_lcm.c │ │ │ ├── bn_mp_lshd.c │ │ │ ├── bn_mp_mod.c │ │ │ ├── bn_mp_mod_2d.c │ │ │ ├── bn_mp_mod_d.c │ │ │ ├── bn_mp_montgomery_calc_normalization.c │ │ │ ├── bn_mp_montgomery_reduce.c │ │ │ ├── bn_mp_montgomery_setup.c │ │ │ ├── bn_mp_mul.c │ │ │ ├── bn_mp_mul_2.c │ │ │ ├── bn_mp_mul_2d.c │ │ │ ├── bn_mp_mul_d.c │ │ │ ├── bn_mp_mulmod.c │ │ │ ├── bn_mp_n_root.c │ │ │ ├── bn_mp_neg.c │ │ │ ├── bn_mp_or.c │ │ │ ├── bn_mp_prime_fermat.c │ │ │ ├── bn_mp_prime_is_divisible.c │ │ │ ├── bn_mp_prime_is_prime.c │ │ │ ├── bn_mp_prime_miller_rabin.c │ │ │ ├── bn_mp_prime_next_prime.c │ │ │ ├── bn_mp_prime_rabin_miller_trials.c │ │ │ ├── bn_mp_prime_random_ex.c │ │ │ ├── bn_mp_radix_size.c │ │ │ ├── bn_mp_radix_smap.c │ │ │ ├── bn_mp_rand.c │ │ │ ├── bn_mp_read_radix.c │ │ │ ├── bn_mp_read_signed_bin.c │ │ │ ├── bn_mp_read_unsigned_bin.c │ │ │ ├── bn_mp_reduce.c │ │ │ ├── bn_mp_reduce_2k.c │ │ │ ├── bn_mp_reduce_2k_l.c │ │ │ ├── bn_mp_reduce_2k_setup.c │ │ │ ├── bn_mp_reduce_2k_setup_l.c │ │ │ ├── bn_mp_reduce_is_2k.c │ │ │ ├── bn_mp_reduce_is_2k_l.c │ │ │ ├── bn_mp_reduce_setup.c │ │ │ ├── bn_mp_rshd.c │ │ │ ├── bn_mp_set.c │ │ │ ├── bn_mp_set_int.c │ │ │ ├── bn_mp_shrink.c │ │ │ ├── bn_mp_signed_bin_size.c │ │ │ ├── bn_mp_sqr.c │ │ │ ├── bn_mp_sqrmod.c │ │ │ ├── bn_mp_sqrt.c │ │ │ ├── bn_mp_sub.c │ │ │ ├── bn_mp_sub_d.c │ │ │ ├── bn_mp_submod.c │ │ │ ├── bn_mp_to_signed_bin.c │ │ │ ├── bn_mp_to_signed_bin_n.c │ │ │ ├── bn_mp_to_unsigned_bin.c │ │ │ ├── bn_mp_to_unsigned_bin_n.c │ │ │ ├── bn_mp_toom_mul.c │ │ │ ├── bn_mp_toom_sqr.c │ │ │ ├── bn_mp_toradix.c │ │ │ ├── bn_mp_toradix_n.c │ │ │ ├── bn_mp_unsigned_bin_size.c │ │ │ ├── bn_mp_xor.c │ │ │ ├── bn_mp_zero.c │ │ │ ├── bn_prime_tab.c │ │ │ ├── bn_reverse.c │ │ │ ├── bn_s_mp_add.c │ │ │ ├── bn_s_mp_exptmod.c │ │ │ ├── bn_s_mp_mul_digs.c │ │ │ ├── bn_s_mp_mul_high_digs.c │ │ │ ├── bn_s_mp_sqr.c │ │ │ ├── bn_s_mp_sub.c │ │ │ ├── bncore.c │ │ │ ├── booker.pl │ │ │ ├── callgraph.txt │ │ │ ├── changes.txt │ │ │ ├── demo │ │ │ ├── CVS │ │ │ │ ├── Entries │ │ │ │ ├── Repository │ │ │ │ └── Root │ │ │ ├── demo.c │ │ │ └── timing.c │ │ │ ├── dep.pl │ │ │ ├── etc │ │ │ ├── 2kprime.1 │ │ │ ├── 2kprime.c │ │ │ ├── CVS │ │ │ │ ├── Entries │ │ │ │ ├── Repository │ │ │ │ └── Root │ │ │ ├── drprime.c │ │ │ ├── drprimes.28 │ │ │ ├── drprimes.txt │ │ │ ├── makefile │ │ │ ├── makefile.icc │ │ │ ├── makefile.msvc │ │ │ ├── mersenne.c │ │ │ ├── mont.c │ │ │ ├── pprime.c │ │ │ ├── prime.1024 │ │ │ ├── prime.512 │ │ │ ├── timer.asm │ │ │ └── tune.c │ │ │ ├── gen.pl │ │ │ ├── log │ │ │ ├── logs │ │ │ ├── CVS │ │ │ │ ├── Entries │ │ │ │ ├── Repository │ │ │ │ └── Root │ │ │ ├── README │ │ │ ├── add.log │ │ │ ├── addsub.png │ │ │ ├── expt.log │ │ │ ├── expt.png │ │ │ ├── expt_2k.log │ │ │ ├── expt_2kl.log │ │ │ ├── expt_dr.log │ │ │ ├── graphs.dem │ │ │ ├── index.html │ │ │ ├── invmod.log │ │ │ ├── invmod.png │ │ │ ├── mult.log │ │ │ ├── mult.png │ │ │ ├── mult_kara.log │ │ │ ├── sqr.log │ │ │ ├── sqr_kara.log │ │ │ └── sub.log │ │ │ ├── makefile.arm │ │ │ ├── makefile.bcc │ │ │ ├── makefile.cygwin_dll │ │ │ ├── makefile.icc │ │ │ ├── makefile.msvc │ │ │ ├── makefile.shared │ │ │ ├── mess.sh │ │ │ ├── mtest │ │ │ ├── CVS │ │ │ │ ├── Entries │ │ │ │ ├── Repository │ │ │ │ └── Root │ │ │ ├── logtab.h │ │ │ ├── mpi-config.h │ │ │ ├── mpi-types.h │ │ │ ├── mpi.c │ │ │ ├── mpi.h │ │ │ └── mtest.c │ │ │ ├── pics │ │ │ ├── CVS │ │ │ │ ├── Entries │ │ │ │ ├── Repository │ │ │ │ └── Root │ │ │ ├── design_process.sxd │ │ │ ├── design_process.tif │ │ │ ├── expt_state.sxd │ │ │ ├── expt_state.tif │ │ │ ├── makefile │ │ │ ├── primality.tif │ │ │ ├── radix.sxd │ │ │ ├── sliding_window.sxd │ │ │ └── sliding_window.tif │ │ │ ├── poster.tex │ │ │ ├── pre_gen │ │ │ ├── CVS │ │ │ │ ├── Entries │ │ │ │ ├── Repository │ │ │ │ └── Root │ │ │ └── mpi.c │ │ │ ├── pretty.build │ │ │ ├── tombc │ │ │ ├── CVS │ │ │ │ ├── Entries │ │ │ │ ├── Repository │ │ │ │ └── Root │ │ │ └── grammar.txt │ │ │ ├── tommath.h │ │ │ ├── tommath.src │ │ │ ├── tommath_class.h │ │ │ └── tommath_superclass.h │ ├── libs │ │ ├── libcas.libcpp │ │ ├── libkcasgui.libcpp │ │ ├── libmpy.libc │ │ └── libtommath.libc │ ├── main.c │ ├── porting.cpp │ └── stub.c ├── llapi.c ├── llapi.h ├── riscvsim │ ├── CMakeLists.txt │ ├── app_config.h │ ├── crt0.c │ ├── debug.c │ ├── decode.c │ ├── decode.h │ ├── jit-gen-arm.c │ ├── jit-gen-arm.h │ ├── jit-rules-arm.h │ ├── keys_39gii.h │ ├── main.c │ ├── mem.h │ ├── memory.c │ ├── opcode_str.h │ ├── simulator.c │ ├── simulator.h │ ├── stub.c │ └── testCode │ │ ├── coremark │ │ ├── CMakeLists.txt │ │ ├── LLLapi.c │ │ ├── LLLapi.h │ │ ├── cm │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── core_list_join.c │ │ │ ├── core_main.c │ │ │ ├── core_matrix.c │ │ │ ├── core_portme.c │ │ │ ├── core_portme.h │ │ │ ├── core_state.c │ │ │ ├── core_util.c │ │ │ └── coremark.h │ │ ├── init.c │ │ ├── ld.lds │ │ ├── main.c │ │ ├── pr.c │ │ └── stub.c │ │ └── test1 │ │ ├── CMakeLists.txt │ │ ├── ld.lds │ │ ├── main.c │ │ └── pr.c ├── script │ └── ld.lds ├── shell_gui │ ├── CMakeLists.txt │ ├── app_config.h │ ├── crt0.c │ ├── cursor_icon.c │ ├── fe │ │ ├── LICENSE │ │ ├── lv_100ask_file_explorer.c │ │ └── lv_100ask_file_explorer.h │ ├── framework │ │ ├── CMakeLists.txt │ │ ├── filelist.txt │ │ ├── screens │ │ │ └── ui_Screen1.c │ │ ├── ui.c │ │ ├── ui.h │ │ ├── ui_events.h │ │ ├── ui_helpers.c │ │ └── ui_helpers.h │ ├── keys_39gii.h │ ├── lv_conf.h │ ├── lvfs.c │ ├── lvfs.h │ ├── lvgl │ │ ├── .codecov.yml │ │ ├── .editorconfig │ │ ├── .github │ │ │ ├── FUNDING.yml │ │ │ ├── ISSUE_TEMPLATE │ │ │ │ ├── bug-report.md │ │ │ │ ├── config.yml │ │ │ │ └── dev-discussion.md │ │ │ ├── auto-comment.yml │ │ │ ├── pull_request_template.md │ │ │ └── workflows │ │ │ │ ├── arduino.yml │ │ │ │ ├── build_micropython.yml │ │ │ │ ├── ccpp.yml │ │ │ │ ├── check_conf.yml │ │ │ │ ├── check_style.yml │ │ │ │ ├── close_old_issues.yml │ │ │ │ ├── compile_docs.yml │ │ │ │ ├── esp_upload_component.yml │ │ │ │ ├── main.yml │ │ │ │ ├── makefile.yml │ │ │ │ └── release.yml │ │ ├── .gitignore │ │ ├── .pre-commit-config.yaml │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── LICENCE.txt │ │ ├── README.md │ │ ├── README_pt_BR.md │ │ ├── README_zh.md │ │ ├── SConscript │ │ ├── component.mk │ │ ├── demos │ │ │ ├── README.md │ │ │ ├── benchmark │ │ │ │ ├── README.md │ │ │ │ ├── assets │ │ │ │ │ ├── img_benchmark_cogwheel_alpha16.c │ │ │ │ │ ├── img_benchmark_cogwheel_argb.c │ │ │ │ │ ├── img_benchmark_cogwheel_chroma_keyed.c │ │ │ │ │ ├── img_benchmark_cogwheel_indexed16.c │ │ │ │ │ ├── img_benchmark_cogwheel_rgb.c │ │ │ │ │ ├── img_benchmark_cogwheel_rgb565a8.c │ │ │ │ │ ├── img_cogwheel_argb.png │ │ │ │ │ ├── img_cogwheel_chroma_keyed.png │ │ │ │ │ ├── img_cogwheel_indexed16.png │ │ │ │ │ ├── img_cogwheel_rgb.png │ │ │ │ │ ├── lv_font_bechmark_montserrat_12_compr_az.c.c │ │ │ │ │ ├── lv_font_bechmark_montserrat_16_compr_az.c.c │ │ │ │ │ └── lv_font_bechmark_montserrat_28_compr_az.c.c │ │ │ │ ├── lv_demo_benchmark.c │ │ │ │ ├── lv_demo_benchmark.h │ │ │ │ ├── screenshot1.png │ │ │ │ └── screenshot2.png │ │ │ ├── keypad_encoder │ │ │ │ ├── README.md │ │ │ │ ├── lv_demo_keypad_encoder.c │ │ │ │ ├── lv_demo_keypad_encoder.h │ │ │ │ ├── screenshot1.gif │ │ │ │ └── screenshot1.png │ │ │ ├── lv_demos.h │ │ │ ├── lv_demos.mk │ │ │ ├── music │ │ │ │ ├── README.md │ │ │ │ ├── assets │ │ │ │ │ ├── img_lv_demo_music_btn_corner_large.c │ │ │ │ │ ├── img_lv_demo_music_btn_list_pause.c │ │ │ │ │ ├── img_lv_demo_music_btn_list_pause_large.c │ │ │ │ │ ├── img_lv_demo_music_btn_list_play.c │ │ │ │ │ ├── img_lv_demo_music_btn_list_play_large.c │ │ │ │ │ ├── img_lv_demo_music_btn_loop.c │ │ │ │ │ ├── img_lv_demo_music_btn_loop_large.c │ │ │ │ │ ├── img_lv_demo_music_btn_next.c │ │ │ │ │ ├── img_lv_demo_music_btn_next_large.c │ │ │ │ │ ├── img_lv_demo_music_btn_pause.c │ │ │ │ │ ├── img_lv_demo_music_btn_pause_large.c │ │ │ │ │ ├── img_lv_demo_music_btn_play.c │ │ │ │ │ ├── img_lv_demo_music_btn_play_large.c │ │ │ │ │ ├── img_lv_demo_music_btn_prev.c │ │ │ │ │ ├── img_lv_demo_music_btn_prev_large.c │ │ │ │ │ ├── img_lv_demo_music_btn_rnd.c │ │ │ │ │ ├── img_lv_demo_music_btn_rnd_large.c │ │ │ │ │ ├── img_lv_demo_music_corner_left.c │ │ │ │ │ ├── img_lv_demo_music_corner_left_large.c │ │ │ │ │ ├── img_lv_demo_music_corner_right.c │ │ │ │ │ ├── img_lv_demo_music_corner_right_large.c │ │ │ │ │ ├── img_lv_demo_music_cover_1.c │ │ │ │ │ ├── img_lv_demo_music_cover_1_large.c │ │ │ │ │ ├── img_lv_demo_music_cover_2.c │ │ │ │ │ ├── img_lv_demo_music_cover_2_large.c │ │ │ │ │ ├── img_lv_demo_music_cover_3.c │ │ │ │ │ ├── img_lv_demo_music_cover_3_large.c │ │ │ │ │ ├── img_lv_demo_music_icon_1.c │ │ │ │ │ ├── img_lv_demo_music_icon_1_large.c │ │ │ │ │ ├── img_lv_demo_music_icon_2.c │ │ │ │ │ ├── img_lv_demo_music_icon_2_large.c │ │ │ │ │ ├── img_lv_demo_music_icon_3.c │ │ │ │ │ ├── img_lv_demo_music_icon_3_large.c │ │ │ │ │ ├── img_lv_demo_music_icon_4.c │ │ │ │ │ ├── img_lv_demo_music_icon_4_large.c │ │ │ │ │ ├── img_lv_demo_music_list_border.c │ │ │ │ │ ├── img_lv_demo_music_list_border_large.c │ │ │ │ │ ├── img_lv_demo_music_logo.c │ │ │ │ │ ├── img_lv_demo_music_slider_knob.c │ │ │ │ │ ├── img_lv_demo_music_slider_knob_large.c │ │ │ │ │ ├── img_lv_demo_music_wave_bottom.c │ │ │ │ │ ├── img_lv_demo_music_wave_bottom_large.c │ │ │ │ │ ├── img_lv_demo_music_wave_top.c │ │ │ │ │ ├── img_lv_demo_music_wave_top_large.c │ │ │ │ │ ├── spectrum.py │ │ │ │ │ ├── spectrum_1.h │ │ │ │ │ ├── spectrum_2.h │ │ │ │ │ └── spectrum_3.h │ │ │ │ ├── lv_demo_music.c │ │ │ │ ├── lv_demo_music.h │ │ │ │ ├── lv_demo_music_list.c │ │ │ │ ├── lv_demo_music_list.h │ │ │ │ ├── lv_demo_music_main.c │ │ │ │ ├── lv_demo_music_main.h │ │ │ │ └── screenshot1.gif │ │ │ ├── stress │ │ │ │ ├── README.md │ │ │ │ ├── lv_demo_stress.c │ │ │ │ ├── lv_demo_stress.h │ │ │ │ ├── screenshot1.gif │ │ │ │ └── screenshot1.png │ │ │ └── widgets │ │ │ │ ├── assets │ │ │ │ ├── avatar.png │ │ │ │ ├── clothes.png │ │ │ │ ├── img_clothes.c │ │ │ │ ├── img_demo_widgets_avatar.c │ │ │ │ ├── img_lvgl_logo.c │ │ │ │ └── lvgl_logo.png │ │ │ │ ├── lv_demo_widgets.c │ │ │ │ ├── lv_demo_widgets.h │ │ │ │ ├── lv_demo_widgets.py │ │ │ │ ├── screenshot1.gif │ │ │ │ └── screenshot1.png │ │ ├── docs │ │ │ ├── CHANGELOG.md │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── CODING_STYLE.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── ROADMAP.md │ │ │ ├── _ext │ │ │ │ └── lv_example.py │ │ │ ├── _static │ │ │ │ ├── css │ │ │ │ │ ├── custom.css │ │ │ │ │ └── fontawesome.min.css │ │ │ │ ├── img │ │ │ │ │ ├── home_1.png │ │ │ │ │ ├── home_2.png │ │ │ │ │ ├── home_3.png │ │ │ │ │ ├── home_4.png │ │ │ │ │ ├── home_5.png │ │ │ │ │ ├── home_6.png │ │ │ │ │ └── home_banner.jpg │ │ │ │ └── js │ │ │ │ │ └── custom.js │ │ │ ├── _templates │ │ │ │ ├── layout.html │ │ │ │ └── page.html │ │ │ ├── build.py │ │ │ ├── conf.py │ │ │ ├── example_list.py │ │ │ ├── favicon.png │ │ │ ├── get-started │ │ │ │ ├── bindings │ │ │ │ │ ├── cpp.md │ │ │ │ │ ├── index.md │ │ │ │ │ └── micropython.md │ │ │ │ ├── index.md │ │ │ │ ├── os │ │ │ │ │ ├── freertos.md │ │ │ │ │ ├── index.md │ │ │ │ │ ├── nuttx.md │ │ │ │ │ ├── rt-thread.md │ │ │ │ │ └── zephyr.md │ │ │ │ ├── platforms │ │ │ │ │ ├── arduino.md │ │ │ │ │ ├── cmake.md │ │ │ │ │ ├── espressif.md │ │ │ │ │ ├── index.md │ │ │ │ │ ├── nxp.md │ │ │ │ │ ├── pc-simulator.md │ │ │ │ │ ├── renesas.md │ │ │ │ │ ├── stm32.md │ │ │ │ │ └── tasmota-berry.md │ │ │ │ └── quick-overview.md │ │ │ ├── index.md │ │ │ ├── intro │ │ │ │ └── index.md │ │ │ ├── layouts │ │ │ │ ├── flex.md │ │ │ │ ├── grid.md │ │ │ │ └── index.md │ │ │ ├── libs │ │ │ │ ├── bmp.md │ │ │ │ ├── ffmpeg.md │ │ │ │ ├── freetype.md │ │ │ │ ├── fsdrv.md │ │ │ │ ├── gif.md │ │ │ │ ├── index.md │ │ │ │ ├── png.md │ │ │ │ ├── qrcode.md │ │ │ │ ├── rlottie.md │ │ │ │ └── sjpg.md │ │ │ ├── logo_lvgl.png │ │ │ ├── misc │ │ │ │ ├── align.png │ │ │ │ ├── anim-timeline.png │ │ │ │ ├── bidi.png │ │ │ │ ├── boxmodel.png │ │ │ │ ├── btn_example.png │ │ │ │ ├── button_style_example.gif │ │ │ │ ├── button_style_example.png │ │ │ │ ├── codeblocks.jpg │ │ │ │ ├── eclipse.jpg │ │ │ │ ├── layers.png │ │ │ │ ├── par_child1.png │ │ │ │ ├── par_child2.png │ │ │ │ ├── par_child3.png │ │ │ │ ├── platformio.jpg │ │ │ │ ├── qtcreator.jpg │ │ │ │ ├── simple_button_example.gif │ │ │ │ ├── simple_button_example.png │ │ │ │ ├── symbols.png │ │ │ │ ├── sys.png │ │ │ │ └── visualstudio.jpg │ │ │ ├── others │ │ │ │ ├── fragment.md │ │ │ │ ├── gridnav.md │ │ │ │ ├── ime_pinyin.md │ │ │ │ ├── imgfont.md │ │ │ │ ├── index.md │ │ │ │ ├── monkey.md │ │ │ │ ├── msg.md │ │ │ │ └── snapshot.md │ │ │ ├── overview │ │ │ │ ├── animation.md │ │ │ │ ├── color.md │ │ │ │ ├── coords.md │ │ │ │ ├── display.md │ │ │ │ ├── drawing.md │ │ │ │ ├── event.md │ │ │ │ ├── file-system.md │ │ │ │ ├── font.md │ │ │ │ ├── image.md │ │ │ │ ├── indev.md │ │ │ │ ├── index.md │ │ │ │ ├── layer.md │ │ │ │ ├── new_widget.md │ │ │ │ ├── object.md │ │ │ │ ├── renderers │ │ │ │ │ ├── arm-2d.md │ │ │ │ │ ├── dma2d.md │ │ │ │ │ ├── index.md │ │ │ │ │ ├── pxp-vglite.md │ │ │ │ │ ├── sdl.md │ │ │ │ │ └── sw.md │ │ │ │ ├── scroll.md │ │ │ │ ├── style-props.md │ │ │ │ ├── style.md │ │ │ │ └── timer.md │ │ │ ├── porting │ │ │ │ ├── display.md │ │ │ │ ├── gpu.md │ │ │ │ ├── indev.md │ │ │ │ ├── index.md │ │ │ │ ├── log.md │ │ │ │ ├── os.md │ │ │ │ ├── project.md │ │ │ │ ├── sleep.md │ │ │ │ ├── tick.md │ │ │ │ └── timer-handler.md │ │ │ ├── requirements.txt │ │ │ └── widgets │ │ │ │ ├── core │ │ │ │ ├── arc.md │ │ │ │ ├── bar.md │ │ │ │ ├── btn.md │ │ │ │ ├── btnmatrix.md │ │ │ │ ├── canvas.md │ │ │ │ ├── checkbox.md │ │ │ │ ├── dropdown.md │ │ │ │ ├── img.md │ │ │ │ ├── index.md │ │ │ │ ├── label.md │ │ │ │ ├── line.md │ │ │ │ ├── roller.md │ │ │ │ ├── slider.md │ │ │ │ ├── switch.md │ │ │ │ ├── table.md │ │ │ │ └── textarea.md │ │ │ │ ├── extra │ │ │ │ ├── animimg.md │ │ │ │ ├── calendar.md │ │ │ │ ├── chart.md │ │ │ │ ├── colorwheel.md │ │ │ │ ├── imgbtn.md │ │ │ │ ├── index.md │ │ │ │ ├── keyboard.md │ │ │ │ ├── led.md │ │ │ │ ├── list.md │ │ │ │ ├── menu.md │ │ │ │ ├── meter.md │ │ │ │ ├── msgbox.md │ │ │ │ ├── span.md │ │ │ │ ├── spinbox.md │ │ │ │ ├── spinner.md │ │ │ │ ├── tabview.md │ │ │ │ ├── tileview.md │ │ │ │ └── win.md │ │ │ │ ├── index.md │ │ │ │ └── obj.md │ │ ├── env_support │ │ │ ├── cmake │ │ │ │ ├── custom.cmake │ │ │ │ ├── esp.cmake │ │ │ │ ├── micropython.cmake │ │ │ │ └── zephyr.cmake │ │ │ ├── cmsis-pack │ │ │ │ ├── LVGL.lvgl.8.3.9.pack │ │ │ │ ├── LVGL.lvgl.pdsc │ │ │ │ ├── LVGL.pidx │ │ │ │ ├── README.md │ │ │ │ ├── gen_pack.sh │ │ │ │ ├── lv_cmsis_pack.txt │ │ │ │ └── lv_conf_cmsis.h │ │ │ ├── rt-thread │ │ │ │ ├── SConscript │ │ │ │ ├── lv_rt_thread_conf.h │ │ │ │ ├── lv_rt_thread_port.c │ │ │ │ └── squareline │ │ │ │ │ ├── README.md │ │ │ │ │ ├── SConscript │ │ │ │ │ ├── lv_ui_entry.c │ │ │ │ │ └── ui │ │ │ │ │ └── lvgl │ │ │ │ │ └── lvgl.h │ │ │ └── zephyr │ │ │ │ └── module.yml │ │ ├── examples │ │ │ ├── anim │ │ │ │ ├── index.rst │ │ │ │ ├── lv_example_anim.h │ │ │ │ ├── lv_example_anim_1.c │ │ │ │ ├── lv_example_anim_1.py │ │ │ │ ├── lv_example_anim_2.c │ │ │ │ ├── lv_example_anim_2.py │ │ │ │ ├── lv_example_anim_3.c │ │ │ │ ├── lv_example_anim_3.py │ │ │ │ ├── lv_example_anim_timeline_1.c │ │ │ │ └── lv_example_anim_timeline_1.py │ │ │ ├── arduino │ │ │ │ └── LVGL_Arduino │ │ │ │ │ └── LVGL_Arduino.ino │ │ │ ├── assets │ │ │ │ ├── animimg001.c │ │ │ │ ├── animimg001.png │ │ │ │ ├── animimg002.c │ │ │ │ ├── animimg002.png │ │ │ │ ├── animimg003.c │ │ │ │ ├── animimg003.png │ │ │ │ ├── caret_down.png │ │ │ │ ├── emoji │ │ │ │ │ ├── F600.png │ │ │ │ │ └── img_emoji_F617.c │ │ │ │ ├── font │ │ │ │ │ ├── lv_font_simsun_16_cjk.fnt │ │ │ │ │ ├── montserrat-16.fnt │ │ │ │ │ └── montserrat-22.fnt │ │ │ │ ├── img_caret_down.c │ │ │ │ ├── img_caret_down.png │ │ │ │ ├── img_cogwheel_alpha16.c │ │ │ │ ├── img_cogwheel_argb.c │ │ │ │ ├── img_cogwheel_argb.png │ │ │ │ ├── img_cogwheel_chroma_keyed.c │ │ │ │ ├── img_cogwheel_chroma_keyed.png │ │ │ │ ├── img_cogwheel_indexed16.c │ │ │ │ ├── img_cogwheel_indexed16.png │ │ │ │ ├── img_cogwheel_rgb.c │ │ │ │ ├── img_cogwheel_rgb.png │ │ │ │ ├── img_hand.c │ │ │ │ ├── img_hand_hour.png │ │ │ │ ├── img_hand_min.png │ │ │ │ ├── img_skew_strip.c │ │ │ │ ├── img_skew_strip.png │ │ │ │ ├── img_skew_strip_80x20_argb8888.fnt │ │ │ │ ├── img_star.c │ │ │ │ ├── img_star.png │ │ │ │ ├── img_strip.png │ │ │ │ ├── imgbtn_left.c │ │ │ │ ├── imgbtn_left.png │ │ │ │ ├── imgbtn_mid.c │ │ │ │ ├── imgbtn_mid.png │ │ │ │ ├── imgbtn_right.c │ │ │ │ └── imgbtn_right.png │ │ │ ├── event │ │ │ │ ├── index.rst │ │ │ │ ├── lv_example_event.h │ │ │ │ ├── lv_example_event_1.c │ │ │ │ ├── lv_example_event_1.py │ │ │ │ ├── lv_example_event_2.c │ │ │ │ ├── lv_example_event_2.py │ │ │ │ ├── lv_example_event_3.c │ │ │ │ ├── lv_example_event_3.py │ │ │ │ └── lv_example_event_4.c │ │ │ ├── get_started │ │ │ │ ├── index.rst │ │ │ │ ├── lv_example_get_started.h │ │ │ │ ├── lv_example_get_started_1.c │ │ │ │ ├── lv_example_get_started_1.py │ │ │ │ ├── lv_example_get_started_2.c │ │ │ │ ├── lv_example_get_started_2.py │ │ │ │ ├── lv_example_get_started_3.c │ │ │ │ └── lv_example_get_started_3.py │ │ │ ├── header.py │ │ │ ├── layouts │ │ │ │ ├── flex │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── lv_example_flex.h │ │ │ │ │ ├── lv_example_flex_1.c │ │ │ │ │ ├── lv_example_flex_1.py │ │ │ │ │ ├── lv_example_flex_2.c │ │ │ │ │ ├── lv_example_flex_2.py │ │ │ │ │ ├── lv_example_flex_3.c │ │ │ │ │ ├── lv_example_flex_3.py │ │ │ │ │ ├── lv_example_flex_4.c │ │ │ │ │ ├── lv_example_flex_4.py │ │ │ │ │ ├── lv_example_flex_5.c │ │ │ │ │ ├── lv_example_flex_5.py │ │ │ │ │ ├── lv_example_flex_6.c │ │ │ │ │ └── lv_example_flex_6.py │ │ │ │ ├── grid │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── lv_example_grid.h │ │ │ │ │ ├── lv_example_grid_1.c │ │ │ │ │ ├── lv_example_grid_1.py │ │ │ │ │ ├── lv_example_grid_2.c │ │ │ │ │ ├── lv_example_grid_2.py │ │ │ │ │ ├── lv_example_grid_3.c │ │ │ │ │ ├── lv_example_grid_3.py │ │ │ │ │ ├── lv_example_grid_4.c │ │ │ │ │ ├── lv_example_grid_4.py │ │ │ │ │ ├── lv_example_grid_5.c │ │ │ │ │ ├── lv_example_grid_5.py │ │ │ │ │ ├── lv_example_grid_6.c │ │ │ │ │ └── lv_example_grid_6.py │ │ │ │ └── lv_example_layout.h │ │ │ ├── libs │ │ │ │ ├── bmp │ │ │ │ │ ├── example_16bit.bmp │ │ │ │ │ ├── example_24bit.bmp │ │ │ │ │ ├── example_32bit.bmp │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── lv_example_bmp.h │ │ │ │ │ ├── lv_example_bmp_1.c │ │ │ │ │ └── lv_example_bmp_1.py │ │ │ │ ├── ffmpeg │ │ │ │ │ ├── birds.mp4 │ │ │ │ │ ├── ffmpeg.png │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── lv_example_ffmpeg.h │ │ │ │ │ ├── lv_example_ffmpeg_1.c │ │ │ │ │ └── lv_example_ffmpeg_2.c │ │ │ │ ├── freetype │ │ │ │ │ ├── Lato-Regular.ttf │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── lv_example_freetype.h │ │ │ │ │ ├── lv_example_freetype_1.c │ │ │ │ │ └── lv_example_freetype_1.py │ │ │ │ ├── gif │ │ │ │ │ ├── bulb.gif │ │ │ │ │ ├── img_bulb_gif.c │ │ │ │ │ ├── img_bulb_gif.py │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── lv_example_gif.h │ │ │ │ │ ├── lv_example_gif_1.c │ │ │ │ │ └── lv_example_gif_1.py │ │ │ │ ├── lv_example_libs.h │ │ │ │ ├── png │ │ │ │ │ ├── img_wink_png.c │ │ │ │ │ ├── img_wink_png.py │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── lv_example_png.h │ │ │ │ │ ├── lv_example_png_1.c │ │ │ │ │ ├── lv_example_png_1.py │ │ │ │ │ └── wink.png │ │ │ │ ├── qrcode │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── lv_example_qrcode.h │ │ │ │ │ ├── lv_example_qrcode_1.c │ │ │ │ │ └── lv_example_qrcode_1.py │ │ │ │ ├── rlottie │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── lv_example_rlottie.h │ │ │ │ │ ├── lv_example_rlottie_1.c │ │ │ │ │ ├── lv_example_rlottie_1.py │ │ │ │ │ ├── lv_example_rlottie_2.c │ │ │ │ │ ├── lv_example_rlottie_2.py │ │ │ │ │ ├── lv_example_rlottie_approve.c │ │ │ │ │ ├── lv_example_rlottie_approve.json │ │ │ │ │ └── lv_example_rlottie_approve.py │ │ │ │ └── sjpg │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── lv_example_sjpg.h │ │ │ │ │ ├── lv_example_sjpg_1.c │ │ │ │ │ ├── lv_example_sjpg_1.py │ │ │ │ │ └── small_image.sjpg │ │ │ ├── lv_examples.h │ │ │ ├── lv_examples.mk │ │ │ ├── others │ │ │ │ ├── fragment │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── lv_example_fragment.h │ │ │ │ │ ├── lv_example_fragment_1.c │ │ │ │ │ └── lv_example_fragment_2.c │ │ │ │ ├── gridnav │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── lv_example_gridnav.h │ │ │ │ │ ├── lv_example_gridnav_1.c │ │ │ │ │ ├── lv_example_gridnav_2.c │ │ │ │ │ ├── lv_example_gridnav_3.c │ │ │ │ │ └── lv_example_gridnav_4.c │ │ │ │ ├── ime │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── lv_example_ime_pinyin.h │ │ │ │ │ ├── lv_example_ime_pinyin_1.c │ │ │ │ │ └── lv_example_ime_pinyin_2.c │ │ │ │ ├── imgfont │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── lv_example_imgfont.h │ │ │ │ │ └── lv_example_imgfont_1.c │ │ │ │ ├── lv_example_others.h │ │ │ │ ├── monkey │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── lv_example_monkey.h │ │ │ │ │ ├── lv_example_monkey_1.c │ │ │ │ │ ├── lv_example_monkey_2.c │ │ │ │ │ └── lv_example_monkey_3.c │ │ │ │ ├── msg │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── lv_example_msg.h │ │ │ │ │ ├── lv_example_msg_1.c │ │ │ │ │ ├── lv_example_msg_2.c │ │ │ │ │ └── lv_example_msg_3.c │ │ │ │ └── snapshot │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── lv_example_snapshot.h │ │ │ │ │ ├── lv_example_snapshot_1.c │ │ │ │ │ └── lv_example_snapshot_1.py │ │ │ ├── porting │ │ │ │ ├── lv_port_disp_template.c │ │ │ │ ├── lv_port_disp_template.h │ │ │ │ ├── lv_port_fs_template.c │ │ │ │ ├── lv_port_fs_template.h │ │ │ │ ├── lv_port_indev_template.c │ │ │ │ └── lv_port_indev_template.h │ │ │ ├── scroll │ │ │ │ ├── index.rst │ │ │ │ ├── lv_example_scroll.h │ │ │ │ ├── lv_example_scroll_1.c │ │ │ │ ├── lv_example_scroll_1.py │ │ │ │ ├── lv_example_scroll_2.c │ │ │ │ ├── lv_example_scroll_2.py │ │ │ │ ├── lv_example_scroll_3.c │ │ │ │ ├── lv_example_scroll_3.py │ │ │ │ ├── lv_example_scroll_4.c │ │ │ │ ├── lv_example_scroll_4.py │ │ │ │ ├── lv_example_scroll_5.c │ │ │ │ ├── lv_example_scroll_5.py │ │ │ │ ├── lv_example_scroll_6.c │ │ │ │ └── lv_example_scroll_6.py │ │ │ ├── styles │ │ │ │ ├── index.rst │ │ │ │ ├── lv_example_style.h │ │ │ │ ├── lv_example_style_1.c │ │ │ │ ├── lv_example_style_1.py │ │ │ │ ├── lv_example_style_10.c │ │ │ │ ├── lv_example_style_10.py │ │ │ │ ├── lv_example_style_11.c │ │ │ │ ├── lv_example_style_11.py │ │ │ │ ├── lv_example_style_12.c │ │ │ │ ├── lv_example_style_12.py │ │ │ │ ├── lv_example_style_13.c │ │ │ │ ├── lv_example_style_13.py │ │ │ │ ├── lv_example_style_14.c │ │ │ │ ├── lv_example_style_14.py │ │ │ │ ├── lv_example_style_15.c │ │ │ │ ├── lv_example_style_2.c │ │ │ │ ├── lv_example_style_2.py │ │ │ │ ├── lv_example_style_3.c │ │ │ │ ├── lv_example_style_3.py │ │ │ │ ├── lv_example_style_4.c │ │ │ │ ├── lv_example_style_4.py │ │ │ │ ├── lv_example_style_5.c │ │ │ │ ├── lv_example_style_5.py │ │ │ │ ├── lv_example_style_6.c │ │ │ │ ├── lv_example_style_6.py │ │ │ │ ├── lv_example_style_7.c │ │ │ │ ├── lv_example_style_7.py │ │ │ │ ├── lv_example_style_8.c │ │ │ │ ├── lv_example_style_8.py │ │ │ │ ├── lv_example_style_9.c │ │ │ │ └── lv_example_style_9.py │ │ │ ├── test_ex.sh │ │ │ └── widgets │ │ │ │ ├── animimg │ │ │ │ ├── index.rst │ │ │ │ ├── lv_example_animimg_1.c │ │ │ │ └── lv_example_animimg_1.py │ │ │ │ ├── arc │ │ │ │ ├── index.rst │ │ │ │ ├── lv_example_arc_1.c │ │ │ │ ├── lv_example_arc_1.py │ │ │ │ ├── lv_example_arc_2.c │ │ │ │ └── lv_example_arc_2.py │ │ │ │ ├── bar │ │ │ │ ├── index.rst │ │ │ │ ├── lv_example_bar_1.c │ │ │ │ ├── lv_example_bar_1.py │ │ │ │ ├── lv_example_bar_2.c │ │ │ │ ├── lv_example_bar_2.py │ │ │ │ ├── lv_example_bar_3.c │ │ │ │ ├── lv_example_bar_3.py │ │ │ │ ├── lv_example_bar_4.c │ │ │ │ ├── lv_example_bar_4.py │ │ │ │ ├── lv_example_bar_5.c │ │ │ │ ├── lv_example_bar_5.py │ │ │ │ ├── lv_example_bar_6.c │ │ │ │ ├── lv_example_bar_6.py │ │ │ │ └── test.py │ │ │ │ ├── btn │ │ │ │ ├── index.rst │ │ │ │ ├── lv_example_btn_1.c │ │ │ │ ├── lv_example_btn_1.py │ │ │ │ ├── lv_example_btn_2.c │ │ │ │ ├── lv_example_btn_2.py │ │ │ │ ├── lv_example_btn_3.c │ │ │ │ └── lv_example_btn_3.py │ │ │ │ ├── btnmatrix │ │ │ │ ├── index.rst │ │ │ │ ├── lv_example_btnmatrix_1.c │ │ │ │ ├── lv_example_btnmatrix_1.py │ │ │ │ ├── lv_example_btnmatrix_2.c │ │ │ │ ├── lv_example_btnmatrix_2.py │ │ │ │ ├── lv_example_btnmatrix_3.c │ │ │ │ └── lv_example_btnmatrix_3.py │ │ │ │ ├── calendar │ │ │ │ ├── index.rst │ │ │ │ ├── lv_example_calendar_1.c │ │ │ │ └── lv_example_calendar_1.py │ │ │ │ ├── canvas │ │ │ │ ├── index.rst │ │ │ │ ├── lv_example_canvas_1.c │ │ │ │ ├── lv_example_canvas_1.py │ │ │ │ ├── lv_example_canvas_2.c │ │ │ │ └── lv_example_canvas_2.py │ │ │ │ ├── chart │ │ │ │ ├── index.rst │ │ │ │ ├── lv_example_chart_1.c │ │ │ │ ├── lv_example_chart_1.py │ │ │ │ ├── lv_example_chart_2.c │ │ │ │ ├── lv_example_chart_2.py │ │ │ │ ├── lv_example_chart_3.c │ │ │ │ ├── lv_example_chart_3.py │ │ │ │ ├── lv_example_chart_4.c │ │ │ │ ├── lv_example_chart_4.py │ │ │ │ ├── lv_example_chart_5.c │ │ │ │ ├── lv_example_chart_5.py │ │ │ │ ├── lv_example_chart_6.c │ │ │ │ ├── lv_example_chart_6.py │ │ │ │ ├── lv_example_chart_7.c │ │ │ │ ├── lv_example_chart_7.py │ │ │ │ ├── lv_example_chart_8.c │ │ │ │ ├── lv_example_chart_8.py │ │ │ │ ├── lv_example_chart_9.c │ │ │ │ └── lv_example_chart_9.py │ │ │ │ ├── checkbox │ │ │ │ ├── index.rst │ │ │ │ ├── lv_example_checkbox_1.c │ │ │ │ ├── lv_example_checkbox_1.py │ │ │ │ └── lv_example_checkbox_2.c │ │ │ │ ├── colorwheel │ │ │ │ ├── index.rst │ │ │ │ ├── lv_example_colorwheel_1.c │ │ │ │ └── lv_example_colorwheel_1.py │ │ │ │ ├── dropdown │ │ │ │ ├── index.rst │ │ │ │ ├── lv_example_dropdown_1.c │ │ │ │ ├── lv_example_dropdown_1.py │ │ │ │ ├── lv_example_dropdown_2.c │ │ │ │ ├── lv_example_dropdown_2.py │ │ │ │ ├── lv_example_dropdown_3.c │ │ │ │ └── lv_example_dropdown_3.py │ │ │ │ ├── img │ │ │ │ ├── index.rst │ │ │ │ ├── lv_example_img_1.c │ │ │ │ ├── lv_example_img_1.py │ │ │ │ ├── lv_example_img_2.c │ │ │ │ ├── lv_example_img_2.py │ │ │ │ ├── lv_example_img_3.c │ │ │ │ ├── lv_example_img_3.py │ │ │ │ ├── lv_example_img_4.c │ │ │ │ └── lv_example_img_4.py │ │ │ │ ├── imgbtn │ │ │ │ ├── index.rst │ │ │ │ ├── lv_example_imgbtn_1.c │ │ │ │ └── lv_example_imgbtn_1.py │ │ │ │ ├── keyboard │ │ │ │ ├── index.rst │ │ │ │ ├── lv_example_keyboard_1.c │ │ │ │ └── lv_example_keyboard_1.py │ │ │ │ ├── label │ │ │ │ ├── index.rst │ │ │ │ ├── lv_example_label_1.c │ │ │ │ ├── lv_example_label_1.py │ │ │ │ ├── lv_example_label_2.c │ │ │ │ ├── lv_example_label_2.py │ │ │ │ ├── lv_example_label_3.c │ │ │ │ ├── lv_example_label_3.py │ │ │ │ ├── lv_example_label_4.c │ │ │ │ ├── lv_example_label_5.c │ │ │ │ └── lv_example_label_5.py │ │ │ │ ├── led │ │ │ │ ├── index.rst │ │ │ │ ├── lv_example_led_1.c │ │ │ │ └── lv_example_led_1.py │ │ │ │ ├── line │ │ │ │ ├── index.rst │ │ │ │ ├── lv_example_line_1.c │ │ │ │ └── lv_example_line_1.py │ │ │ │ ├── list │ │ │ │ ├── index.rst │ │ │ │ ├── lv_example_list_1.c │ │ │ │ ├── lv_example_list_1.py │ │ │ │ ├── lv_example_list_2.c │ │ │ │ ├── lv_example_list_2.py │ │ │ │ └── test.py │ │ │ │ ├── lv_example_widgets.h │ │ │ │ ├── menu │ │ │ │ ├── index.rst │ │ │ │ ├── lv_example_menu_1.c │ │ │ │ ├── lv_example_menu_1.py │ │ │ │ ├── lv_example_menu_2.c │ │ │ │ ├── lv_example_menu_2.py │ │ │ │ ├── lv_example_menu_3.c │ │ │ │ ├── lv_example_menu_3.py │ │ │ │ ├── lv_example_menu_4.c │ │ │ │ ├── lv_example_menu_4.py │ │ │ │ └── lv_example_menu_5.c │ │ │ │ ├── meter │ │ │ │ ├── index.rst │ │ │ │ ├── lv_example_meter_1.c │ │ │ │ ├── lv_example_meter_1.py │ │ │ │ ├── lv_example_meter_2.c │ │ │ │ ├── lv_example_meter_2.py │ │ │ │ ├── lv_example_meter_3.c │ │ │ │ ├── lv_example_meter_3.py │ │ │ │ ├── lv_example_meter_4.c │ │ │ │ └── lv_example_meter_4.py │ │ │ │ ├── msgbox │ │ │ │ ├── index.rst │ │ │ │ ├── lv_example_msgbox_1.c │ │ │ │ └── lv_example_msgbox_1.py │ │ │ │ ├── obj │ │ │ │ ├── index.rst │ │ │ │ ├── lv_example_obj_1.c │ │ │ │ ├── lv_example_obj_1.py │ │ │ │ ├── lv_example_obj_2.c │ │ │ │ └── lv_example_obj_2.py │ │ │ │ ├── roller │ │ │ │ ├── index.rst │ │ │ │ ├── lv_example_roller_1.c │ │ │ │ ├── lv_example_roller_1.py │ │ │ │ ├── lv_example_roller_2.c │ │ │ │ ├── lv_example_roller_2.py │ │ │ │ ├── lv_example_roller_3.c │ │ │ │ └── lv_example_roller_3.py │ │ │ │ ├── slider │ │ │ │ ├── index.rst │ │ │ │ ├── lv_example_slider_1.c │ │ │ │ ├── lv_example_slider_1.py │ │ │ │ ├── lv_example_slider_2.c │ │ │ │ ├── lv_example_slider_2.py │ │ │ │ ├── lv_example_slider_3.c │ │ │ │ └── lv_example_slider_3.py │ │ │ │ ├── span │ │ │ │ ├── index.rst │ │ │ │ ├── lv_example_span_1.c │ │ │ │ └── lv_example_span_1.py │ │ │ │ ├── spinbox │ │ │ │ ├── index.rst │ │ │ │ ├── lv_example_spinbox_1.c │ │ │ │ └── lv_example_spinbox_1.py │ │ │ │ ├── spinner │ │ │ │ ├── index.rst │ │ │ │ ├── lv_example_spinner_1.c │ │ │ │ └── lv_example_spinner_1.py │ │ │ │ ├── switch │ │ │ │ ├── index.rst │ │ │ │ ├── lv_example_switch_1.c │ │ │ │ └── lv_example_switch_1.py │ │ │ │ ├── table │ │ │ │ ├── index.rst │ │ │ │ ├── lv_example_table_1.c │ │ │ │ ├── lv_example_table_1.py │ │ │ │ ├── lv_example_table_2.c │ │ │ │ └── lv_example_table_2.py │ │ │ │ ├── tabview │ │ │ │ ├── index.rst │ │ │ │ ├── lv_example_tabview_1.c │ │ │ │ ├── lv_example_tabview_1.py │ │ │ │ ├── lv_example_tabview_2.c │ │ │ │ └── lv_example_tabview_2.py │ │ │ │ ├── textarea │ │ │ │ ├── index.rst │ │ │ │ ├── lv_example_textarea_1.c │ │ │ │ ├── lv_example_textarea_1.py │ │ │ │ ├── lv_example_textarea_2.c │ │ │ │ ├── lv_example_textarea_2.py │ │ │ │ ├── lv_example_textarea_3.c │ │ │ │ └── lv_example_textarea_3.py │ │ │ │ ├── tileview │ │ │ │ ├── index.rst │ │ │ │ ├── lv_example_tileview_1.c │ │ │ │ └── lv_example_tileview_1.py │ │ │ │ └── win │ │ │ │ ├── index.rst │ │ │ │ ├── lv_example_win_1.c │ │ │ │ └── lv_example_win_1.py │ │ ├── idf_component.yml │ │ ├── library.json │ │ ├── library.properties │ │ ├── lv_conf_template.h │ │ ├── lvgl.h │ │ ├── lvgl.mk │ │ ├── scripts │ │ │ ├── .gitignore │ │ │ ├── Doxyfile │ │ │ ├── build_html_examples.sh │ │ │ ├── built_in_font │ │ │ │ ├── DejaVuSans.ttf │ │ │ │ ├── FontAwesome5-Solid+Brands+Regular.woff │ │ │ │ ├── Montserrat-Medium.ttf │ │ │ │ ├── SimSun.woff │ │ │ │ ├── built_in_font_gen.py │ │ │ │ ├── generate_all.py │ │ │ │ └── unscii-8.ttf │ │ │ ├── changelog-template.hbs │ │ │ ├── changelog_gen.sh │ │ │ ├── code-format.cfg │ │ │ ├── code-format.py │ │ │ ├── cppcheck_run.sh │ │ │ ├── filetohex.py │ │ │ ├── find_version.sh │ │ │ ├── genexamplelist.sh │ │ │ ├── infer_run.sh │ │ │ ├── install-prerequisites.sh │ │ │ ├── jpg_to_sjpg.py │ │ │ ├── lv_conf_internal_gen.py │ │ │ ├── release │ │ │ │ ├── com.py │ │ │ │ ├── commits.txt │ │ │ │ ├── patch.py │ │ │ │ └── release.py │ │ │ └── style_api_gen.py │ │ ├── src │ │ │ ├── core │ │ │ │ ├── lv_core.mk │ │ │ │ ├── lv_disp.c │ │ │ │ ├── lv_disp.h │ │ │ │ ├── lv_event.c │ │ │ │ ├── lv_event.h │ │ │ │ ├── lv_group.c │ │ │ │ ├── lv_group.h │ │ │ │ ├── lv_indev.c │ │ │ │ ├── lv_indev.h │ │ │ │ ├── lv_indev_scroll.c │ │ │ │ ├── lv_indev_scroll.h │ │ │ │ ├── lv_obj.c │ │ │ │ ├── lv_obj.h │ │ │ │ ├── lv_obj_class.c │ │ │ │ ├── lv_obj_class.h │ │ │ │ ├── lv_obj_draw.c │ │ │ │ ├── lv_obj_draw.h │ │ │ │ ├── lv_obj_pos.c │ │ │ │ ├── lv_obj_pos.h │ │ │ │ ├── lv_obj_scroll.c │ │ │ │ ├── lv_obj_scroll.h │ │ │ │ ├── lv_obj_style.c │ │ │ │ ├── lv_obj_style.h │ │ │ │ ├── lv_obj_style_gen.c │ │ │ │ ├── lv_obj_style_gen.h │ │ │ │ ├── lv_obj_tree.c │ │ │ │ ├── lv_obj_tree.h │ │ │ │ ├── lv_refr.c │ │ │ │ ├── lv_refr.h │ │ │ │ ├── lv_theme.c │ │ │ │ └── lv_theme.h │ │ │ ├── draw │ │ │ │ ├── arm2d │ │ │ │ │ ├── lv_draw_arm2d.mk │ │ │ │ │ ├── lv_gpu_arm2d.c │ │ │ │ │ └── lv_gpu_arm2d.h │ │ │ │ ├── lv_draw.c │ │ │ │ ├── lv_draw.h │ │ │ │ ├── lv_draw.mk │ │ │ │ ├── lv_draw_arc.c │ │ │ │ ├── lv_draw_arc.h │ │ │ │ ├── lv_draw_img.c │ │ │ │ ├── lv_draw_img.h │ │ │ │ ├── lv_draw_label.c │ │ │ │ ├── lv_draw_label.h │ │ │ │ ├── lv_draw_layer.c │ │ │ │ ├── lv_draw_layer.h │ │ │ │ ├── lv_draw_line.c │ │ │ │ ├── lv_draw_line.h │ │ │ │ ├── lv_draw_mask.c │ │ │ │ ├── lv_draw_mask.h │ │ │ │ ├── lv_draw_rect.c │ │ │ │ ├── lv_draw_rect.h │ │ │ │ ├── lv_draw_transform.c │ │ │ │ ├── lv_draw_transform.h │ │ │ │ ├── lv_draw_triangle.c │ │ │ │ ├── lv_draw_triangle.h │ │ │ │ ├── lv_img_buf.c │ │ │ │ ├── lv_img_buf.h │ │ │ │ ├── lv_img_cache.c │ │ │ │ ├── lv_img_cache.h │ │ │ │ ├── lv_img_decoder.c │ │ │ │ ├── lv_img_decoder.h │ │ │ │ ├── nxp │ │ │ │ │ ├── lv_draw_nxp.mk │ │ │ │ │ ├── pxp │ │ │ │ │ │ ├── lv_draw_nxp_pxp.mk │ │ │ │ │ │ ├── lv_draw_pxp.c │ │ │ │ │ │ ├── lv_draw_pxp.h │ │ │ │ │ │ ├── lv_draw_pxp_blend.c │ │ │ │ │ │ ├── lv_draw_pxp_blend.h │ │ │ │ │ │ ├── lv_gpu_nxp_pxp.c │ │ │ │ │ │ ├── lv_gpu_nxp_pxp.h │ │ │ │ │ │ ├── lv_gpu_nxp_pxp_osa.c │ │ │ │ │ │ └── lv_gpu_nxp_pxp_osa.h │ │ │ │ │ └── vglite │ │ │ │ │ │ ├── lv_draw_nxp_vglite.mk │ │ │ │ │ │ ├── lv_draw_vglite.c │ │ │ │ │ │ ├── lv_draw_vglite.h │ │ │ │ │ │ ├── lv_draw_vglite_arc.c │ │ │ │ │ │ ├── lv_draw_vglite_arc.h │ │ │ │ │ │ ├── lv_draw_vglite_blend.c │ │ │ │ │ │ ├── lv_draw_vglite_blend.h │ │ │ │ │ │ ├── lv_draw_vglite_line.c │ │ │ │ │ │ ├── lv_draw_vglite_line.h │ │ │ │ │ │ ├── lv_draw_vglite_rect.c │ │ │ │ │ │ ├── lv_draw_vglite_rect.h │ │ │ │ │ │ ├── lv_vglite_buf.c │ │ │ │ │ │ ├── lv_vglite_buf.h │ │ │ │ │ │ ├── lv_vglite_utils.c │ │ │ │ │ │ └── lv_vglite_utils.h │ │ │ │ ├── renesas │ │ │ │ │ ├── lv_draw_renesas.mk │ │ │ │ │ ├── lv_gpu_d2_draw_label.c │ │ │ │ │ ├── lv_gpu_d2_ra6m3.c │ │ │ │ │ └── lv_gpu_d2_ra6m3.h │ │ │ │ ├── sdl │ │ │ │ │ ├── README.md │ │ │ │ │ ├── lv_draw_sdl.c │ │ │ │ │ ├── lv_draw_sdl.h │ │ │ │ │ ├── lv_draw_sdl.mk │ │ │ │ │ ├── lv_draw_sdl_arc.c │ │ │ │ │ ├── lv_draw_sdl_bg.c │ │ │ │ │ ├── lv_draw_sdl_composite.c │ │ │ │ │ ├── lv_draw_sdl_composite.h │ │ │ │ │ ├── lv_draw_sdl_img.c │ │ │ │ │ ├── lv_draw_sdl_img.h │ │ │ │ │ ├── lv_draw_sdl_label.c │ │ │ │ │ ├── lv_draw_sdl_layer.c │ │ │ │ │ ├── lv_draw_sdl_layer.h │ │ │ │ │ ├── lv_draw_sdl_line.c │ │ │ │ │ ├── lv_draw_sdl_mask.c │ │ │ │ │ ├── lv_draw_sdl_mask.h │ │ │ │ │ ├── lv_draw_sdl_polygon.c │ │ │ │ │ ├── lv_draw_sdl_priv.h │ │ │ │ │ ├── lv_draw_sdl_rect.c │ │ │ │ │ ├── lv_draw_sdl_rect.h │ │ │ │ │ ├── lv_draw_sdl_stack_blur.c │ │ │ │ │ ├── lv_draw_sdl_stack_blur.h │ │ │ │ │ ├── lv_draw_sdl_texture_cache.c │ │ │ │ │ ├── lv_draw_sdl_texture_cache.h │ │ │ │ │ ├── lv_draw_sdl_utils.c │ │ │ │ │ └── lv_draw_sdl_utils.h │ │ │ │ ├── stm32_dma2d │ │ │ │ │ ├── lv_draw_stm32_dma2d.mk │ │ │ │ │ ├── lv_gpu_stm32_dma2d.c │ │ │ │ │ └── lv_gpu_stm32_dma2d.h │ │ │ │ ├── sw │ │ │ │ │ ├── lv_draw_sw.c │ │ │ │ │ ├── lv_draw_sw.h │ │ │ │ │ ├── lv_draw_sw.mk │ │ │ │ │ ├── lv_draw_sw_arc.c │ │ │ │ │ ├── lv_draw_sw_blend.c │ │ │ │ │ ├── lv_draw_sw_blend.h │ │ │ │ │ ├── lv_draw_sw_dither.c │ │ │ │ │ ├── lv_draw_sw_dither.h │ │ │ │ │ ├── lv_draw_sw_gradient.c │ │ │ │ │ ├── lv_draw_sw_gradient.h │ │ │ │ │ ├── lv_draw_sw_img.c │ │ │ │ │ ├── lv_draw_sw_layer.c │ │ │ │ │ ├── lv_draw_sw_letter.c │ │ │ │ │ ├── lv_draw_sw_line.c │ │ │ │ │ ├── lv_draw_sw_polygon.c │ │ │ │ │ ├── lv_draw_sw_rect.c │ │ │ │ │ └── lv_draw_sw_transform.c │ │ │ │ └── swm341_dma2d │ │ │ │ │ ├── lv_draw_swm341_dma2d.mk │ │ │ │ │ ├── lv_gpu_swm341_dma2d.c │ │ │ │ │ └── lv_gpu_swm341_dma2d.h │ │ │ ├── extra │ │ │ │ ├── README.md │ │ │ │ ├── layouts │ │ │ │ │ ├── flex │ │ │ │ │ │ ├── lv_flex.c │ │ │ │ │ │ └── lv_flex.h │ │ │ │ │ ├── grid │ │ │ │ │ │ ├── lv_grid.c │ │ │ │ │ │ └── lv_grid.h │ │ │ │ │ └── lv_layouts.h │ │ │ │ ├── libs │ │ │ │ │ ├── bmp │ │ │ │ │ │ ├── lv_bmp.c │ │ │ │ │ │ └── lv_bmp.h │ │ │ │ │ ├── ffmpeg │ │ │ │ │ │ ├── lv_ffmpeg.c │ │ │ │ │ │ └── lv_ffmpeg.h │ │ │ │ │ ├── freetype │ │ │ │ │ │ ├── arial.ttf │ │ │ │ │ │ ├── lv_freetype.c │ │ │ │ │ │ └── lv_freetype.h │ │ │ │ │ ├── fsdrv │ │ │ │ │ │ ├── lv_fs_fatfs.c │ │ │ │ │ │ ├── lv_fs_posix.c │ │ │ │ │ │ ├── lv_fs_stdio.c │ │ │ │ │ │ ├── lv_fs_win32.c │ │ │ │ │ │ └── lv_fsdrv.h │ │ │ │ │ ├── gif │ │ │ │ │ │ ├── gifdec.c │ │ │ │ │ │ ├── gifdec.h │ │ │ │ │ │ ├── lv_gif.c │ │ │ │ │ │ └── lv_gif.h │ │ │ │ │ ├── lv_libs.h │ │ │ │ │ ├── png │ │ │ │ │ │ ├── lodepng.c │ │ │ │ │ │ ├── lodepng.h │ │ │ │ │ │ ├── lv_png.c │ │ │ │ │ │ └── lv_png.h │ │ │ │ │ ├── qrcode │ │ │ │ │ │ ├── lv_qrcode.c │ │ │ │ │ │ ├── lv_qrcode.h │ │ │ │ │ │ ├── qrcodegen.c │ │ │ │ │ │ └── qrcodegen.h │ │ │ │ │ ├── rlottie │ │ │ │ │ │ ├── lv_rlottie.c │ │ │ │ │ │ └── lv_rlottie.h │ │ │ │ │ └── sjpg │ │ │ │ │ │ ├── lv_sjpg.c │ │ │ │ │ │ ├── lv_sjpg.h │ │ │ │ │ │ ├── tjpgd.c │ │ │ │ │ │ ├── tjpgd.h │ │ │ │ │ │ └── tjpgdcnf.h │ │ │ │ ├── lv_extra.c │ │ │ │ ├── lv_extra.h │ │ │ │ ├── lv_extra.mk │ │ │ │ ├── others │ │ │ │ │ ├── fragment │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── lv_fragment.c │ │ │ │ │ │ ├── lv_fragment.h │ │ │ │ │ │ └── lv_fragment_manager.c │ │ │ │ │ ├── gridnav │ │ │ │ │ │ ├── lv_gridnav.c │ │ │ │ │ │ └── lv_gridnav.h │ │ │ │ │ ├── ime │ │ │ │ │ │ ├── lv_ime_pinyin.c │ │ │ │ │ │ └── lv_ime_pinyin.h │ │ │ │ │ ├── imgfont │ │ │ │ │ │ ├── lv_imgfont.c │ │ │ │ │ │ └── lv_imgfont.h │ │ │ │ │ ├── lv_others.h │ │ │ │ │ ├── monkey │ │ │ │ │ │ ├── lv_monkey.c │ │ │ │ │ │ └── lv_monkey.h │ │ │ │ │ ├── msg │ │ │ │ │ │ ├── lv_msg.c │ │ │ │ │ │ └── lv_msg.h │ │ │ │ │ └── snapshot │ │ │ │ │ │ ├── lv_snapshot.c │ │ │ │ │ │ └── lv_snapshot.h │ │ │ │ ├── themes │ │ │ │ │ ├── basic │ │ │ │ │ │ ├── lv_theme_basic.c │ │ │ │ │ │ └── lv_theme_basic.h │ │ │ │ │ ├── default │ │ │ │ │ │ ├── lv_theme_default.c │ │ │ │ │ │ └── lv_theme_default.h │ │ │ │ │ ├── lv_themes.h │ │ │ │ │ └── mono │ │ │ │ │ │ ├── lv_theme_mono.c │ │ │ │ │ │ └── lv_theme_mono.h │ │ │ │ └── widgets │ │ │ │ │ ├── animimg │ │ │ │ │ ├── lv_animimg.c │ │ │ │ │ └── lv_animimg.h │ │ │ │ │ ├── calendar │ │ │ │ │ ├── lv_calendar.c │ │ │ │ │ ├── lv_calendar.h │ │ │ │ │ ├── lv_calendar_header_arrow.c │ │ │ │ │ ├── lv_calendar_header_arrow.h │ │ │ │ │ ├── lv_calendar_header_dropdown.c │ │ │ │ │ └── lv_calendar_header_dropdown.h │ │ │ │ │ ├── chart │ │ │ │ │ ├── lv_chart.c │ │ │ │ │ └── lv_chart.h │ │ │ │ │ ├── colorwheel │ │ │ │ │ ├── lv_colorwheel.c │ │ │ │ │ └── lv_colorwheel.h │ │ │ │ │ ├── imgbtn │ │ │ │ │ ├── lv_imgbtn.c │ │ │ │ │ └── lv_imgbtn.h │ │ │ │ │ ├── keyboard │ │ │ │ │ ├── lv_keyboard.c │ │ │ │ │ └── lv_keyboard.h │ │ │ │ │ ├── led │ │ │ │ │ ├── lv_led.c │ │ │ │ │ └── lv_led.h │ │ │ │ │ ├── list │ │ │ │ │ ├── lv_list.c │ │ │ │ │ └── lv_list.h │ │ │ │ │ ├── lv_widgets.h │ │ │ │ │ ├── menu │ │ │ │ │ ├── lv_menu.c │ │ │ │ │ └── lv_menu.h │ │ │ │ │ ├── meter │ │ │ │ │ ├── lv_meter.c │ │ │ │ │ └── lv_meter.h │ │ │ │ │ ├── msgbox │ │ │ │ │ ├── lv_msgbox.c │ │ │ │ │ └── lv_msgbox.h │ │ │ │ │ ├── span │ │ │ │ │ ├── lv_span.c │ │ │ │ │ └── lv_span.h │ │ │ │ │ ├── spinbox │ │ │ │ │ ├── lv_spinbox.c │ │ │ │ │ └── lv_spinbox.h │ │ │ │ │ ├── spinner │ │ │ │ │ ├── lv_spinner.c │ │ │ │ │ └── lv_spinner.h │ │ │ │ │ ├── tabview │ │ │ │ │ ├── lv_tabview.c │ │ │ │ │ └── lv_tabview.h │ │ │ │ │ ├── tileview │ │ │ │ │ ├── lv_tileview.c │ │ │ │ │ └── lv_tileview.h │ │ │ │ │ └── win │ │ │ │ │ ├── lv_win.c │ │ │ │ │ └── lv_win.h │ │ │ ├── font │ │ │ │ ├── korean.ttf │ │ │ │ ├── lv_font.c │ │ │ │ ├── lv_font.h │ │ │ │ ├── lv_font.mk │ │ │ │ ├── lv_font_dejavu_16_persian_hebrew.c │ │ │ │ ├── lv_font_fmt_txt.c │ │ │ │ ├── lv_font_fmt_txt.h │ │ │ │ ├── lv_font_loader.c │ │ │ │ ├── lv_font_loader.h │ │ │ │ ├── lv_font_montserrat_10.c │ │ │ │ ├── lv_font_montserrat_12.c │ │ │ │ ├── lv_font_montserrat_12_subpx.c │ │ │ │ ├── lv_font_montserrat_14.c │ │ │ │ ├── lv_font_montserrat_16.c │ │ │ │ ├── lv_font_montserrat_18.c │ │ │ │ ├── lv_font_montserrat_20.c │ │ │ │ ├── lv_font_montserrat_22.c │ │ │ │ ├── lv_font_montserrat_24.c │ │ │ │ ├── lv_font_montserrat_26.c │ │ │ │ ├── lv_font_montserrat_28.c │ │ │ │ ├── lv_font_montserrat_28_compressed.c │ │ │ │ ├── lv_font_montserrat_30.c │ │ │ │ ├── lv_font_montserrat_32.c │ │ │ │ ├── lv_font_montserrat_34.c │ │ │ │ ├── lv_font_montserrat_36.c │ │ │ │ ├── lv_font_montserrat_38.c │ │ │ │ ├── lv_font_montserrat_40.c │ │ │ │ ├── lv_font_montserrat_42.c │ │ │ │ ├── lv_font_montserrat_44.c │ │ │ │ ├── lv_font_montserrat_46.c │ │ │ │ ├── lv_font_montserrat_48.c │ │ │ │ ├── lv_font_montserrat_8.c │ │ │ │ ├── lv_font_simsun_16_cjk.c │ │ │ │ ├── lv_font_unscii_16.c │ │ │ │ ├── lv_font_unscii_8.c │ │ │ │ └── lv_symbol_def.h │ │ │ ├── hal │ │ │ │ ├── lv_hal.h │ │ │ │ ├── lv_hal.mk │ │ │ │ ├── lv_hal_disp.c │ │ │ │ ├── lv_hal_disp.h │ │ │ │ ├── lv_hal_indev.c │ │ │ │ ├── lv_hal_indev.h │ │ │ │ ├── lv_hal_tick.c │ │ │ │ └── lv_hal_tick.h │ │ │ ├── lv_api_map.h │ │ │ ├── lv_conf_internal.h │ │ │ ├── lv_conf_kconfig.h │ │ │ ├── lvgl.h │ │ │ ├── misc │ │ │ │ ├── lv_anim.c │ │ │ │ ├── lv_anim.h │ │ │ │ ├── lv_anim_timeline.c │ │ │ │ ├── lv_anim_timeline.h │ │ │ │ ├── lv_area.c │ │ │ │ ├── lv_area.h │ │ │ │ ├── lv_assert.h │ │ │ │ ├── lv_async.c │ │ │ │ ├── lv_async.h │ │ │ │ ├── lv_bidi.c │ │ │ │ ├── lv_bidi.h │ │ │ │ ├── lv_color.c │ │ │ │ ├── lv_color.h │ │ │ │ ├── lv_fs.c │ │ │ │ ├── lv_fs.h │ │ │ │ ├── lv_gc.c │ │ │ │ ├── lv_gc.h │ │ │ │ ├── lv_ll.c │ │ │ │ ├── lv_ll.h │ │ │ │ ├── lv_log.c │ │ │ │ ├── lv_log.h │ │ │ │ ├── lv_lru.c │ │ │ │ ├── lv_lru.h │ │ │ │ ├── lv_math.c │ │ │ │ ├── lv_math.h │ │ │ │ ├── lv_mem.c │ │ │ │ ├── lv_mem.h │ │ │ │ ├── lv_misc.mk │ │ │ │ ├── lv_printf.c │ │ │ │ ├── lv_printf.h │ │ │ │ ├── lv_style.c │ │ │ │ ├── lv_style.h │ │ │ │ ├── lv_style_gen.c │ │ │ │ ├── lv_style_gen.h │ │ │ │ ├── lv_templ.c │ │ │ │ ├── lv_templ.h │ │ │ │ ├── lv_timer.c │ │ │ │ ├── lv_timer.h │ │ │ │ ├── lv_tlsf.c │ │ │ │ ├── lv_tlsf.h │ │ │ │ ├── lv_txt.c │ │ │ │ ├── lv_txt.h │ │ │ │ ├── lv_txt_ap.c │ │ │ │ ├── lv_txt_ap.h │ │ │ │ ├── lv_types.h │ │ │ │ ├── lv_utils.c │ │ │ │ └── lv_utils.h │ │ │ └── widgets │ │ │ │ ├── lv_arc.c │ │ │ │ ├── lv_arc.h │ │ │ │ ├── lv_bar.c │ │ │ │ ├── lv_bar.h │ │ │ │ ├── lv_btn.c │ │ │ │ ├── lv_btn.h │ │ │ │ ├── lv_btnmatrix.c │ │ │ │ ├── lv_btnmatrix.h │ │ │ │ ├── lv_canvas.c │ │ │ │ ├── lv_canvas.h │ │ │ │ ├── lv_checkbox.c │ │ │ │ ├── lv_checkbox.h │ │ │ │ ├── lv_dropdown.c │ │ │ │ ├── lv_dropdown.h │ │ │ │ ├── lv_img.c │ │ │ │ ├── lv_img.h │ │ │ │ ├── lv_label.c │ │ │ │ ├── lv_label.h │ │ │ │ ├── lv_line.c │ │ │ │ ├── lv_line.h │ │ │ │ ├── lv_objx_templ.c │ │ │ │ ├── lv_objx_templ.h │ │ │ │ ├── lv_roller.c │ │ │ │ ├── lv_roller.h │ │ │ │ ├── lv_slider.c │ │ │ │ ├── lv_slider.h │ │ │ │ ├── lv_switch.c │ │ │ │ ├── lv_switch.h │ │ │ │ ├── lv_table.c │ │ │ │ ├── lv_table.h │ │ │ │ ├── lv_textarea.c │ │ │ │ ├── lv_textarea.h │ │ │ │ └── lv_widgets.mk │ │ └── tests │ │ │ ├── .gitignore │ │ │ ├── CMakeLists.txt │ │ │ ├── README.md │ │ │ ├── config.yml │ │ │ ├── main.py │ │ │ ├── makefile │ │ │ ├── Makefile │ │ │ └── test.c │ │ │ ├── ref_imgs │ │ │ ├── dropdown_1.png │ │ │ ├── dropdown_2.png │ │ │ ├── scr1.png │ │ │ └── table_1.png │ │ │ ├── src │ │ │ ├── lv_test_conf.h │ │ │ ├── lv_test_helpers.h │ │ │ ├── lv_test_indev.c │ │ │ ├── lv_test_indev.h │ │ │ ├── lv_test_init.c │ │ │ ├── lv_test_init.h │ │ │ ├── test_cases │ │ │ │ ├── _test_template.c │ │ │ │ ├── test_arc.c │ │ │ │ ├── test_bar.c │ │ │ │ ├── test_checkbox.c │ │ │ │ ├── test_config.c │ │ │ │ ├── test_demo_stress.c │ │ │ │ ├── test_demo_widgets.c │ │ │ │ ├── test_dropdown.c │ │ │ │ ├── test_event.c │ │ │ │ ├── test_font_loader.c │ │ │ │ ├── test_fs.c │ │ │ │ ├── test_line.c │ │ │ │ ├── test_mem.c │ │ │ │ ├── test_obj_tree.c │ │ │ │ ├── test_slider.c │ │ │ │ ├── test_snapshot.c │ │ │ │ ├── test_style.c │ │ │ │ ├── test_switch.c │ │ │ │ ├── test_table.c │ │ │ │ ├── test_textarea.c │ │ │ │ └── test_txt.c │ │ │ ├── test_files │ │ │ │ └── readtest.txt │ │ │ └── test_fonts │ │ │ │ ├── font_1.c │ │ │ │ ├── font_1.fnt │ │ │ │ ├── font_2.c │ │ │ │ ├── font_2.fnt │ │ │ │ ├── font_3.c │ │ │ │ └── font_3.fnt │ │ │ └── unity │ │ │ ├── generate_test_runner.rb │ │ │ ├── run_test.erb │ │ │ ├── type_sanitizer.rb │ │ │ ├── unity.c │ │ │ ├── unity.h │ │ │ ├── unity_internals.h │ │ │ ├── unity_support.c │ │ │ └── unity_support.h │ ├── main.c │ ├── mouse_cursor_icon.png │ └── stub.c └── wasm3 │ ├── CMakeLists.txt │ ├── app_config.h │ ├── cm.h │ ├── core │ ├── CMakeLists.txt │ ├── extensions │ │ ├── m3_extensions.c │ │ └── wasm3_ext.h │ ├── extra │ │ ├── coremark_minimal.wasm.h │ │ ├── fib32.wasm.h │ │ ├── fib32_tail.wasm.h │ │ ├── fib64.wasm.h │ │ └── wasi_core.h │ ├── m3_api_libc.c │ ├── m3_api_libc.h │ ├── m3_api_meta_wasi.c │ ├── m3_api_tracer.c │ ├── m3_api_tracer.h │ ├── m3_api_uvwasi.c │ ├── m3_api_wasi.c │ ├── m3_api_wasi.h │ ├── m3_bind.c │ ├── m3_bind.h │ ├── m3_code.c │ ├── m3_code.h │ ├── m3_compile.c │ ├── m3_compile.h │ ├── m3_config.h │ ├── m3_config_platforms.h │ ├── m3_core.c │ ├── m3_core.h │ ├── m3_env.c │ ├── m3_env.h │ ├── m3_exception.h │ ├── m3_exec.c │ ├── m3_exec.h │ ├── m3_exec_defs.h │ ├── m3_function.c │ ├── m3_function.h │ ├── m3_info.c │ ├── m3_info.h │ ├── m3_math_utils.h │ ├── m3_module.c │ ├── m3_parse.c │ ├── wasm3.h │ └── wasm3_defs.h │ ├── crt0.c │ ├── main.c │ ├── stub.c │ ├── wasi.c │ └── wasi.h ├── boot0 ├── CMakeLists.txt ├── boot.c ├── bsp │ ├── board.c │ ├── board.h │ ├── clk.c │ ├── clk.h │ ├── display.c │ ├── font.c │ ├── irq.c │ ├── keyboard.c │ ├── keyboard.h │ ├── nand.c │ └── registers │ │ ├── chip_io_map.h │ │ ├── hw_dma.h │ │ ├── hw_irq.h │ │ ├── regs.h │ │ ├── regs_i.h │ │ ├── regsapbh.h │ │ ├── regsapbx.h │ │ ├── regsaudioin.h │ │ ├── regsaudioout.h │ │ ├── regsaxi_ahb0.h │ │ ├── regsaxis.h │ │ ├── regsbch.h │ │ ├── regsclkctrl.h │ │ ├── regsdcp.h │ │ ├── regsdigctl.h │ │ ├── regsdram.h │ │ ├── regsdri.h │ │ ├── regsecc8.h │ │ ├── regsemi.h │ │ ├── regsgpiomon.h │ │ ├── regsgpmi.h │ │ ├── regsi2c.h │ │ ├── regsicoll.h │ │ ├── regsir.h │ │ ├── regslcdif.h │ │ ├── regslradc.h │ │ ├── regsocotp.h │ │ ├── regspinctrl.h │ │ ├── regspower.h │ │ ├── regspwm.h │ │ ├── regspxp.h │ │ ├── regsrtc.h │ │ ├── regssaif.h │ │ ├── regssimdbg.h │ │ ├── regssimgpmisel.h │ │ ├── regssimmemsel.h │ │ ├── regssimsspsel.h │ │ ├── regsspdif.h │ │ ├── regsssp.h │ │ ├── regsssp_i.h │ │ ├── regssy.h │ │ ├── regssydma.h │ │ ├── regstimrot.h │ │ ├── regstvenc.h │ │ ├── regsuartapp.h │ │ ├── regsuartdbg.h │ │ ├── regsusbctrl.h │ │ └── regsusbphy.h ├── exception.c ├── loader.h ├── logo.h ├── lwipopts.h ├── main.c ├── script │ ├── build_fw.bd │ └── ld.lds ├── stmp3770_firmware.c ├── stmp3770_firmware.h ├── stub.c ├── sys_arch.c ├── tusb_config.h ├── usb_descriptors.c ├── utils.c ├── utils.h └── webdata │ ├── fsdata.c │ └── html │ ├── fs │ ├── 200.html │ ├── 404.html │ ├── done.html │ ├── file_manager.js │ ├── index.html │ ├── lfs.js │ ├── lfs_err.js │ └── lfs_js.js │ ├── mkfs.sh │ └── mkfsdata ├── boot1 ├── CMakeLists.txt ├── bsp │ ├── bsp.c │ ├── bsp.h │ ├── irq.c │ ├── nand.c │ └── registers │ │ ├── chip_io_map.h │ │ ├── hw_dma.h │ │ ├── hw_irq.h │ │ ├── regs.h │ │ ├── regs_i.h │ │ ├── regsapbh.h │ │ ├── regsapbx.h │ │ ├── regsaudioin.h │ │ ├── regsaudioout.h │ │ ├── regsaxi_ahb0.h │ │ ├── regsaxis.h │ │ ├── regsbch.h │ │ ├── regsclkctrl.h │ │ ├── regsdcp.h │ │ ├── regsdigctl.h │ │ ├── regsdram.h │ │ ├── regsdri.h │ │ ├── regsecc8.h │ │ ├── regsemi.h │ │ ├── regsgpiomon.h │ │ ├── regsgpmi.h │ │ ├── regsi2c.h │ │ ├── regsicoll.h │ │ ├── regsir.h │ │ ├── regslcdif.h │ │ ├── regslradc.h │ │ ├── regsocotp.h │ │ ├── regspinctrl.h │ │ ├── regspower.h │ │ ├── regspwm.h │ │ ├── regspxp.h │ │ ├── regsrtc.h │ │ ├── regssaif.h │ │ ├── regssimdbg.h │ │ ├── regssimgpmisel.h │ │ ├── regssimmemsel.h │ │ ├── regssimsspsel.h │ │ ├── regsspdif.h │ │ ├── regsssp.h │ │ ├── regsssp_i.h │ │ ├── regssy.h │ │ ├── regssydma.h │ │ ├── regstimrot.h │ │ ├── regstvenc.h │ │ ├── regsuartapp.h │ │ ├── regsuartdbg.h │ │ ├── regsusbctrl.h │ │ └── regsusbphy.h ├── config.h ├── exception.c ├── head.c ├── libc.c ├── main.c ├── mm.c ├── mm.h ├── script │ └── ld.lds ├── stub.c ├── utils.c └── utils.h ├── default.nix ├── library ├── TinyUSB │ ├── lwip │ │ ├── FILES │ │ ├── api │ │ │ ├── api_lib.c │ │ │ ├── api_msg.c │ │ │ ├── err.c │ │ │ ├── if_api.c │ │ │ ├── netbuf.c │ │ │ ├── netdb.c │ │ │ ├── netifapi.c │ │ │ ├── sockets.c │ │ │ └── tcpip.c │ │ ├── apps │ │ │ ├── altcp_tls │ │ │ │ ├── altcp_tls_mbedtls.c │ │ │ │ ├── altcp_tls_mbedtls_mem.c │ │ │ │ ├── altcp_tls_mbedtls_mem.h │ │ │ │ └── altcp_tls_mbedtls_structs.h │ │ │ ├── http │ │ │ │ ├── altcp_proxyconnect.c │ │ │ │ ├── fs.c │ │ │ │ ├── fs │ │ │ │ │ ├── 404.html │ │ │ │ │ ├── img │ │ │ │ │ │ └── sics.gif │ │ │ │ │ └── index.html │ │ │ │ ├── fsdata.h │ │ │ │ ├── http_client.c │ │ │ │ ├── httpd.c │ │ │ │ ├── httpd_structs.h │ │ │ │ └── makefsdata │ │ │ │ │ ├── build.sh │ │ │ │ │ ├── makefsdata │ │ │ │ │ ├── makefsdata.c │ │ │ │ │ ├── miniz.c │ │ │ │ │ ├── miniz.h │ │ │ │ │ ├── readme.txt │ │ │ │ │ └── tinydir.h │ │ │ ├── lwiperf │ │ │ │ └── lwiperf.c │ │ │ ├── mdns │ │ │ │ └── mdns.c │ │ │ ├── mqtt │ │ │ │ └── mqtt.c │ │ │ ├── netbiosns │ │ │ │ └── netbiosns.c │ │ │ ├── smtp │ │ │ │ └── smtp.c │ │ │ ├── snmp │ │ │ │ ├── snmp_asn1.c │ │ │ │ ├── snmp_asn1.h │ │ │ │ ├── snmp_core.c │ │ │ │ ├── snmp_core_priv.h │ │ │ │ ├── snmp_mib2.c │ │ │ │ ├── snmp_mib2_icmp.c │ │ │ │ ├── snmp_mib2_interfaces.c │ │ │ │ ├── snmp_mib2_ip.c │ │ │ │ ├── snmp_mib2_snmp.c │ │ │ │ ├── snmp_mib2_system.c │ │ │ │ ├── snmp_mib2_tcp.c │ │ │ │ ├── snmp_mib2_udp.c │ │ │ │ ├── snmp_msg.c │ │ │ │ ├── snmp_msg.h │ │ │ │ ├── snmp_netconn.c │ │ │ │ ├── snmp_pbuf_stream.c │ │ │ │ ├── snmp_pbuf_stream.h │ │ │ │ ├── snmp_raw.c │ │ │ │ ├── snmp_scalar.c │ │ │ │ ├── snmp_snmpv2_framework.c │ │ │ │ ├── snmp_snmpv2_usm.c │ │ │ │ ├── snmp_table.c │ │ │ │ ├── snmp_threadsync.c │ │ │ │ ├── snmp_traps.c │ │ │ │ ├── snmpv3.c │ │ │ │ ├── snmpv3_mbedtls.c │ │ │ │ └── snmpv3_priv.h │ │ │ ├── sntp │ │ │ │ └── sntp.c │ │ │ └── tftp │ │ │ │ └── tftp_server.c │ │ ├── arch │ │ │ ├── cc.h │ │ │ ├── cpu.h │ │ │ ├── perf.h │ │ │ └── sys_arch.h │ │ ├── core │ │ │ ├── altcp.c │ │ │ ├── altcp_alloc.c │ │ │ ├── altcp_tcp.c │ │ │ ├── def.c │ │ │ ├── dns.c │ │ │ ├── inet_chksum.c │ │ │ ├── init.c │ │ │ ├── ip.c │ │ │ ├── ipv4 │ │ │ │ ├── autoip.c │ │ │ │ ├── dhcp.c │ │ │ │ ├── etharp.c │ │ │ │ ├── icmp.c │ │ │ │ ├── igmp.c │ │ │ │ ├── ip4.c │ │ │ │ ├── ip4_addr.c │ │ │ │ └── ip4_frag.c │ │ │ ├── ipv6 │ │ │ │ ├── dhcp6.c │ │ │ │ ├── ethip6.c │ │ │ │ ├── icmp6.c │ │ │ │ ├── inet6.c │ │ │ │ ├── ip6.c │ │ │ │ ├── ip6_addr.c │ │ │ │ ├── ip6_frag.c │ │ │ │ ├── mld6.c │ │ │ │ └── nd6.c │ │ │ ├── mem.c │ │ │ ├── memp.c │ │ │ ├── netif.c │ │ │ ├── pbuf.c │ │ │ ├── raw.c │ │ │ ├── stats.c │ │ │ ├── sys.c │ │ │ ├── tcp.c │ │ │ ├── tcp_in.c │ │ │ ├── tcp_out.c │ │ │ ├── timeouts.c │ │ │ └── udp.c │ │ ├── include │ │ │ ├── compat │ │ │ │ ├── posix │ │ │ │ │ ├── arpa │ │ │ │ │ │ └── inet.h │ │ │ │ │ ├── net │ │ │ │ │ │ └── if.h │ │ │ │ │ ├── netdb.h │ │ │ │ │ └── sys │ │ │ │ │ │ └── socket.h │ │ │ │ └── stdc │ │ │ │ │ └── errno.h │ │ │ ├── lwip │ │ │ │ ├── altcp.h │ │ │ │ ├── altcp_tcp.h │ │ │ │ ├── altcp_tls.h │ │ │ │ ├── api.h │ │ │ │ ├── apps │ │ │ │ │ ├── FILES │ │ │ │ │ ├── altcp_proxyconnect.h │ │ │ │ │ ├── altcp_tls_mbedtls_opts.h │ │ │ │ │ ├── fs.h │ │ │ │ │ ├── http_client.h │ │ │ │ │ ├── httpd.h │ │ │ │ │ ├── httpd_opts.h │ │ │ │ │ ├── lwiperf.h │ │ │ │ │ ├── mdns.h │ │ │ │ │ ├── mdns_opts.h │ │ │ │ │ ├── mdns_priv.h │ │ │ │ │ ├── mqtt.h │ │ │ │ │ ├── mqtt_opts.h │ │ │ │ │ ├── mqtt_priv.h │ │ │ │ │ ├── netbiosns.h │ │ │ │ │ ├── netbiosns_opts.h │ │ │ │ │ ├── smtp.h │ │ │ │ │ ├── smtp_opts.h │ │ │ │ │ ├── snmp.h │ │ │ │ │ ├── snmp_core.h │ │ │ │ │ ├── snmp_mib2.h │ │ │ │ │ ├── snmp_opts.h │ │ │ │ │ ├── snmp_scalar.h │ │ │ │ │ ├── snmp_snmpv2_framework.h │ │ │ │ │ ├── snmp_snmpv2_usm.h │ │ │ │ │ ├── snmp_table.h │ │ │ │ │ ├── snmp_threadsync.h │ │ │ │ │ ├── snmpv3.h │ │ │ │ │ ├── sntp.h │ │ │ │ │ ├── sntp_opts.h │ │ │ │ │ ├── tftp_opts.h │ │ │ │ │ └── tftp_server.h │ │ │ │ ├── arch.h │ │ │ │ ├── autoip.h │ │ │ │ ├── debug.h │ │ │ │ ├── def.h │ │ │ │ ├── dhcp.h │ │ │ │ ├── dhcp6.h │ │ │ │ ├── dns.h │ │ │ │ ├── err.h │ │ │ │ ├── errno.h │ │ │ │ ├── etharp.h │ │ │ │ ├── ethip6.h │ │ │ │ ├── icmp.h │ │ │ │ ├── icmp6.h │ │ │ │ ├── if_api.h │ │ │ │ ├── igmp.h │ │ │ │ ├── inet.h │ │ │ │ ├── inet_chksum.h │ │ │ │ ├── init.h │ │ │ │ ├── init.h.cmake.in │ │ │ │ ├── ip.h │ │ │ │ ├── ip4.h │ │ │ │ ├── ip4_addr.h │ │ │ │ ├── ip4_frag.h │ │ │ │ ├── ip6.h │ │ │ │ ├── ip6_addr.h │ │ │ │ ├── ip6_frag.h │ │ │ │ ├── ip6_zone.h │ │ │ │ ├── ip_addr.h │ │ │ │ ├── mem.h │ │ │ │ ├── memp.h │ │ │ │ ├── mld6.h │ │ │ │ ├── nd6.h │ │ │ │ ├── netbuf.h │ │ │ │ ├── netdb.h │ │ │ │ ├── netif.h │ │ │ │ ├── netifapi.h │ │ │ │ ├── opt.h │ │ │ │ ├── pbuf.h │ │ │ │ ├── priv │ │ │ │ │ ├── altcp_priv.h │ │ │ │ │ ├── api_msg.h │ │ │ │ │ ├── mem_priv.h │ │ │ │ │ ├── memp_priv.h │ │ │ │ │ ├── memp_std.h │ │ │ │ │ ├── nd6_priv.h │ │ │ │ │ ├── raw_priv.h │ │ │ │ │ ├── sockets_priv.h │ │ │ │ │ ├── tcp_priv.h │ │ │ │ │ └── tcpip_priv.h │ │ │ │ ├── prot │ │ │ │ │ ├── autoip.h │ │ │ │ │ ├── dhcp.h │ │ │ │ │ ├── dhcp6.h │ │ │ │ │ ├── dns.h │ │ │ │ │ ├── etharp.h │ │ │ │ │ ├── ethernet.h │ │ │ │ │ ├── iana.h │ │ │ │ │ ├── icmp.h │ │ │ │ │ ├── icmp6.h │ │ │ │ │ ├── ieee.h │ │ │ │ │ ├── igmp.h │ │ │ │ │ ├── ip.h │ │ │ │ │ ├── ip4.h │ │ │ │ │ ├── ip6.h │ │ │ │ │ ├── mld6.h │ │ │ │ │ ├── nd6.h │ │ │ │ │ ├── tcp.h │ │ │ │ │ └── udp.h │ │ │ │ ├── raw.h │ │ │ │ ├── sio.h │ │ │ │ ├── snmp.h │ │ │ │ ├── sockets.h │ │ │ │ ├── stats.h │ │ │ │ ├── sys.h │ │ │ │ ├── tcp.h │ │ │ │ ├── tcpbase.h │ │ │ │ ├── tcpip.h │ │ │ │ ├── timeouts.h │ │ │ │ └── udp.h │ │ │ └── netif │ │ │ │ ├── bridgeif.h │ │ │ │ ├── bridgeif_opts.h │ │ │ │ ├── etharp.h │ │ │ │ ├── ethernet.h │ │ │ │ ├── ieee802154.h │ │ │ │ ├── lowpan6.h │ │ │ │ ├── lowpan6_ble.h │ │ │ │ ├── lowpan6_common.h │ │ │ │ ├── lowpan6_opts.h │ │ │ │ ├── ppp │ │ │ │ ├── ccp.h │ │ │ │ ├── chap-md5.h │ │ │ │ ├── chap-new.h │ │ │ │ ├── chap_ms.h │ │ │ │ ├── eap.h │ │ │ │ ├── ecp.h │ │ │ │ ├── eui64.h │ │ │ │ ├── fsm.h │ │ │ │ ├── ipcp.h │ │ │ │ ├── ipv6cp.h │ │ │ │ ├── lcp.h │ │ │ │ ├── magic.h │ │ │ │ ├── mppe.h │ │ │ │ ├── polarssl │ │ │ │ │ ├── arc4.h │ │ │ │ │ ├── des.h │ │ │ │ │ ├── md4.h │ │ │ │ │ ├── md5.h │ │ │ │ │ └── sha1.h │ │ │ │ ├── ppp.h │ │ │ │ ├── ppp_impl.h │ │ │ │ ├── ppp_opts.h │ │ │ │ ├── pppapi.h │ │ │ │ ├── pppcrypt.h │ │ │ │ ├── pppdebug.h │ │ │ │ ├── pppoe.h │ │ │ │ ├── pppol2tp.h │ │ │ │ ├── pppos.h │ │ │ │ ├── upap.h │ │ │ │ └── vj.h │ │ │ │ ├── slipif.h │ │ │ │ └── zepif.h │ │ └── netif │ │ │ ├── FILES │ │ │ ├── bridgeif.c │ │ │ ├── bridgeif_fdb.c │ │ │ ├── ethernet.c │ │ │ ├── lowpan6.c │ │ │ ├── lowpan6_ble.c │ │ │ ├── lowpan6_common.c │ │ │ ├── ppp │ │ │ ├── PPPD_FOLLOWUP │ │ │ ├── auth.c │ │ │ ├── ccp.c │ │ │ ├── chap-md5.c │ │ │ ├── chap-new.c │ │ │ ├── chap_ms.c │ │ │ ├── demand.c │ │ │ ├── eap.c │ │ │ ├── ecp.c │ │ │ ├── eui64.c │ │ │ ├── fsm.c │ │ │ ├── ipcp.c │ │ │ ├── ipv6cp.c │ │ │ ├── lcp.c │ │ │ ├── magic.c │ │ │ ├── mppe.c │ │ │ ├── multilink.c │ │ │ ├── polarssl │ │ │ │ ├── README │ │ │ │ ├── arc4.c │ │ │ │ ├── des.c │ │ │ │ ├── md4.c │ │ │ │ ├── md5.c │ │ │ │ └── sha1.c │ │ │ ├── ppp.c │ │ │ ├── pppapi.c │ │ │ ├── pppcrypt.c │ │ │ ├── pppoe.c │ │ │ ├── pppol2tp.c │ │ │ ├── pppos.c │ │ │ ├── upap.c │ │ │ ├── utils.c │ │ │ └── vj.c │ │ │ ├── slipif.c │ │ │ └── zepif.c │ ├── networking │ │ ├── dhserver.c │ │ ├── dhserver.h │ │ ├── dnserver.c │ │ ├── dnserver.h │ │ ├── ndis.h │ │ ├── rndis_protocol.h │ │ └── rndis_reports.c │ └── src │ │ ├── CMakeLists.txt │ │ ├── class │ │ ├── audio │ │ │ ├── audio.h │ │ │ ├── audio_device.c │ │ │ └── audio_device.h │ │ ├── bth │ │ │ ├── bth_device.c │ │ │ └── bth_device.h │ │ ├── cdc │ │ │ ├── cdc.h │ │ │ ├── cdc_device.c │ │ │ ├── cdc_device.h │ │ │ ├── cdc_host.c │ │ │ ├── cdc_host.h │ │ │ ├── cdc_rndis.h │ │ │ ├── cdc_rndis_host.c │ │ │ ├── cdc_rndis_host.h │ │ │ └── serial │ │ │ │ ├── cp210x.h │ │ │ │ └── ftdi_sio.h │ │ ├── dfu │ │ │ ├── dfu.h │ │ │ ├── dfu_device.c │ │ │ ├── dfu_device.h │ │ │ ├── dfu_rt_device.c │ │ │ └── dfu_rt_device.h │ │ ├── hid │ │ │ ├── hid.h │ │ │ ├── hid_device.c │ │ │ ├── hid_device.h │ │ │ ├── hid_host.c │ │ │ └── hid_host.h │ │ ├── midi │ │ │ ├── midi.h │ │ │ ├── midi_device.c │ │ │ └── midi_device.h │ │ ├── msc │ │ │ ├── msc.h │ │ │ ├── msc_device.c │ │ │ ├── msc_device.h │ │ │ ├── msc_host.c │ │ │ └── msc_host.h │ │ ├── net │ │ │ ├── ecm_rndis_device.c │ │ │ ├── ncm.h │ │ │ ├── ncm_device.c │ │ │ └── net_device.h │ │ ├── usbtmc │ │ │ ├── usbtmc.h │ │ │ ├── usbtmc_device.c │ │ │ └── usbtmc_device.h │ │ ├── vendor │ │ │ ├── vendor_device.c │ │ │ ├── vendor_device.h │ │ │ ├── vendor_host.c │ │ │ └── vendor_host.h │ │ └── video │ │ │ ├── video.h │ │ │ ├── video_device.c │ │ │ └── video_device.h │ │ ├── common │ │ ├── tusb_common.h │ │ ├── tusb_compiler.h │ │ ├── tusb_debug.h │ │ ├── tusb_fifo.c │ │ ├── tusb_fifo.h │ │ ├── tusb_mcu.h │ │ ├── tusb_private.h │ │ ├── tusb_timeout.h │ │ ├── tusb_types.h │ │ └── tusb_verify.h │ │ ├── device │ │ ├── dcd.h │ │ ├── usbd.c │ │ ├── usbd.h │ │ ├── usbd_control.c │ │ └── usbd_pvt.h │ │ ├── host │ │ ├── hcd.h │ │ ├── hub.c │ │ ├── hub.h │ │ ├── usbh.c │ │ ├── usbh.h │ │ └── usbh_pvt.h │ │ ├── osal │ │ ├── osal.h │ │ ├── osal_freertos.h │ │ ├── osal_mynewt.h │ │ ├── osal_none.h │ │ ├── osal_pico.h │ │ ├── osal_rtthread.h │ │ └── osal_rtx4.h │ │ ├── portable │ │ ├── bridgetek │ │ │ └── ft9xx │ │ │ │ └── dcd_ft9xx.c │ │ ├── chipidea │ │ │ ├── ci_fs │ │ │ │ ├── ci_fs_kinetis.h │ │ │ │ ├── ci_fs_mcx.h │ │ │ │ ├── ci_fs_type.h │ │ │ │ └── dcd_ci_fs.c │ │ │ └── ci_hs │ │ │ │ ├── ci_hs_imxrt.h │ │ │ │ ├── ci_hs_lpc18_43.h │ │ │ │ ├── ci_hs_mcx.h │ │ │ │ ├── ci_hs_stmp3770.h │ │ │ │ ├── ci_hs_type.h │ │ │ │ ├── dcd_ci_hs.c │ │ │ │ └── hcd_ci_hs.c │ │ ├── dialog │ │ │ └── da146xx │ │ │ │ └── dcd_da146xx.c │ │ ├── ehci │ │ │ ├── ehci.c │ │ │ ├── ehci.h │ │ │ └── ehci_api.h │ │ ├── espressif │ │ │ └── esp32sx │ │ │ │ └── dcd_esp32sx.c │ │ ├── mentor │ │ │ └── musb │ │ │ │ ├── dcd_musb.c │ │ │ │ ├── hcd_musb.c │ │ │ │ ├── musb_msp432e.h │ │ │ │ ├── musb_tm4c.h │ │ │ │ └── musb_type.h │ │ ├── microchip │ │ │ ├── pic │ │ │ │ └── dcd_pic.c │ │ │ ├── pic32mz │ │ │ │ ├── dcd_pic32mz.c │ │ │ │ └── usbhs_registers.h │ │ │ ├── samd │ │ │ │ └── dcd_samd.c │ │ │ ├── samg │ │ │ │ └── dcd_samg.c │ │ │ └── samx7x │ │ │ │ ├── common_usb_regs.h │ │ │ │ └── dcd_samx7x.c │ │ ├── mindmotion │ │ │ └── mm32 │ │ │ │ └── dcd_mm32f327x_otg.c │ │ ├── nordic │ │ │ └── nrf5x │ │ │ │ └── dcd_nrf5x.c │ │ ├── nuvoton │ │ │ ├── nuc120 │ │ │ │ └── dcd_nuc120.c │ │ │ ├── nuc121 │ │ │ │ └── dcd_nuc121.c │ │ │ └── nuc505 │ │ │ │ └── dcd_nuc505.c │ │ ├── nxp │ │ │ ├── khci │ │ │ │ ├── dcd_khci.c │ │ │ │ └── hcd_khci.c │ │ │ ├── lpc17_40 │ │ │ │ ├── dcd_lpc17_40.c │ │ │ │ ├── dcd_lpc17_40.h │ │ │ │ └── hcd_lpc17_40.c │ │ │ └── lpc_ip3511 │ │ │ │ └── dcd_lpc_ip3511.c │ │ ├── ohci │ │ │ ├── ohci.c │ │ │ └── ohci.h │ │ ├── raspberrypi │ │ │ ├── pio_usb │ │ │ │ ├── dcd_pio_usb.c │ │ │ │ └── hcd_pio_usb.c │ │ │ └── rp2040 │ │ │ │ ├── dcd_rp2040.c │ │ │ │ ├── hcd_rp2040.c │ │ │ │ ├── rp2040_usb.c │ │ │ │ └── rp2040_usb.h │ │ ├── renesas │ │ │ └── rusb2 │ │ │ │ ├── dcd_rusb2.c │ │ │ │ ├── hcd_rusb2.c │ │ │ │ ├── rusb2_common.c │ │ │ │ ├── rusb2_ra.h │ │ │ │ ├── rusb2_rx.h │ │ │ │ └── rusb2_type.h │ │ ├── sony │ │ │ └── cxd56 │ │ │ │ └── dcd_cxd56.c │ │ ├── st │ │ │ ├── stm32_fsdev │ │ │ │ ├── dcd_stm32_fsdev.c │ │ │ │ └── dcd_stm32_fsdev_pvt_st.h │ │ │ ├── synopsys │ │ │ │ ├── dcd_synopsys.c │ │ │ │ └── synopsys_common.h │ │ │ └── typec │ │ │ │ └── typec_stm32.c │ │ ├── sunxi │ │ │ ├── dcd_sunxi_musb.c │ │ │ └── musb_def.h │ │ ├── synopsys │ │ │ └── dwc2 │ │ │ │ ├── dcd_dwc2.c │ │ │ │ ├── dwc2_bcm.h │ │ │ │ ├── dwc2_efm32.h │ │ │ │ ├── dwc2_esp32.h │ │ │ │ ├── dwc2_gd32.h │ │ │ │ ├── dwc2_stm32.h │ │ │ │ ├── dwc2_type.h │ │ │ │ ├── dwc2_xmc.h │ │ │ │ └── hwcfg_list.md │ │ ├── template │ │ │ └── dcd_template.c │ │ ├── ti │ │ │ └── msp430x5xx │ │ │ │ └── dcd_msp430x5xx.c │ │ ├── valentyusb │ │ │ └── eptri │ │ │ │ ├── dcd_eptri.c │ │ │ │ └── dcd_eptri.h │ │ └── wch │ │ │ └── ch32v307 │ │ │ ├── ch32_usbhs_reg.h │ │ │ └── dcd_usbhs.c │ │ ├── tinyusb.mk │ │ ├── tusb.c │ │ ├── tusb.h │ │ ├── tusb_option.h │ │ └── typec │ │ ├── pd_types.h │ │ ├── tcd.h │ │ ├── usbc.c │ │ └── usbc.h ├── lfs │ ├── .gitattributes │ ├── .gitignore │ ├── DESIGN.md │ ├── LICENSE.md │ ├── README.md │ ├── SPEC.md │ ├── lfs.c │ ├── lfs.h │ ├── lfs_util.c │ └── lfs_util.h ├── umm_malloc-1.1.2 │ ├── .github │ │ └── workflows │ │ │ └── verifier.yml │ ├── .gitignore │ ├── .gitmodules │ ├── LICENSE │ ├── README.md │ ├── multitest.sh │ ├── project.yml │ ├── src │ │ ├── umm_info.c │ │ ├── umm_integrity.c │ │ ├── umm_malloc.c │ │ ├── umm_malloc.h │ │ ├── umm_malloc_cfg.h │ │ ├── umm_malloc_cfgport.h │ │ └── umm_poison.c │ ├── test │ │ ├── options │ │ │ ├── default.yml │ │ │ ├── enable_critical_depth_check.yml │ │ │ ├── enable_info.yml │ │ │ ├── enable_inline_metrics.yml │ │ │ ├── enable_integrity_check.yml │ │ │ ├── enable_poison_check.yml │ │ │ └── first_fit.yml │ │ ├── support │ │ │ ├── .gitkeep │ │ │ ├── dbglog │ │ │ │ └── dbglog.h │ │ │ ├── support_umm_heap.h │ │ │ ├── support_umm_malloc.c │ │ │ └── support_umm_malloc.h │ │ ├── test_FirstMalloc.c │ │ ├── test_Free.c │ │ ├── test_Metrics.c │ │ ├── test_MultiMalloc.c │ │ ├── test_Poison.c │ │ ├── test_Realloc.c │ │ ├── test_Stress.c │ │ ├── test_TooBigMalloc.c │ │ └── umm_malloc_cfgport.h │ └── uncrustify.cfg └── xprintfc │ ├── .gitignore │ ├── LICENSE │ ├── README.md │ ├── xformatc.c │ └── xformatc.h ├── shell.nix ├── system ├── CMakeLists.txt ├── FreeRTOS │ ├── croutine.c │ ├── event_groups.c │ ├── include │ │ ├── FreeRTOS.h │ │ ├── StackMacros.h │ │ ├── atomic.h │ │ ├── croutine.h │ │ ├── deprecated_definitions.h │ │ ├── event_groups.h │ │ ├── list.h │ │ ├── message_buffer.h │ │ ├── mpu_prototypes.h │ │ ├── mpu_wrappers.h │ │ ├── portable.h │ │ ├── projdefs.h │ │ ├── queue.h │ │ ├── semphr.h │ │ ├── stack_macros.h │ │ ├── stdint.readme │ │ ├── stream_buffer.h │ │ ├── task.h │ │ └── timers.h │ ├── list.c │ ├── portable │ │ ├── heap_3.c │ │ ├── heap_4.c_off │ │ ├── port.c │ │ ├── portISR.c │ │ └── portmacro.h │ ├── queue.c │ ├── stream_buffer.c │ ├── tasks.c │ └── timers.c ├── FreeRTOSConfig.h ├── app_runtime.c ├── app_runtime.h ├── boot.c ├── bsp │ ├── board.c │ ├── board.h │ ├── clk.c │ ├── display.c │ ├── font.c │ ├── irq.c │ ├── keyboard.c │ ├── keyboard.h │ └── registers │ │ ├── chip_io_map.h │ │ ├── hw_dma.h │ │ ├── hw_irq.h │ │ ├── regs.h │ │ ├── regs_i.h │ │ ├── regsapbh.h │ │ ├── regsapbx.h │ │ ├── regsaudioin.h │ │ ├── regsaudioout.h │ │ ├── regsaxi_ahb0.h │ │ ├── regsaxis.h │ │ ├── regsbch.h │ │ ├── regsclkctrl.h │ │ ├── regsdcp.h │ │ ├── regsdigctl.h │ │ ├── regsdram.h │ │ ├── regsdri.h │ │ ├── regsecc8.h │ │ ├── regsemi.h │ │ ├── regsgpiomon.h │ │ ├── regsgpmi.h │ │ ├── regsi2c.h │ │ ├── regsicoll.h │ │ ├── regsir.h │ │ ├── regslcdif.h │ │ ├── regslradc.h │ │ ├── regsocotp.h │ │ ├── regspinctrl.h │ │ ├── regspower.h │ │ ├── regspwm.h │ │ ├── regspxp.h │ │ ├── regsrtc.h │ │ ├── regssaif.h │ │ ├── regssimdbg.h │ │ ├── regssimgpmisel.h │ │ ├── regssimmemsel.h │ │ ├── regssimsspsel.h │ │ ├── regsspdif.h │ │ ├── regsssp.h │ │ ├── regsssp_i.h │ │ ├── regssy.h │ │ ├── regssydma.h │ │ ├── regstimrot.h │ │ ├── regstvenc.h │ │ ├── regsuartapp.h │ │ ├── regsuartdbg.h │ │ ├── regsusbctrl.h │ │ └── regsusbphy.h ├── exception.c ├── existos.h ├── gdbserver.c ├── gdbserver.h ├── httpd.c ├── hypercall.c ├── hypercall.h ├── lwipopts.h ├── main.c ├── printf.c ├── script │ └── ld.lds ├── sideload_server.c ├── sideload_server.h ├── stub.c ├── sys_mmap.c ├── sys_mmap.h ├── tusb_config.h ├── usb.c ├── usb_descriptors.c ├── utils.c ├── utils.h ├── vfs.c └── webdata │ ├── fsdata.c │ └── html │ ├── fs │ ├── 200.html │ ├── 404.html │ └── index.html │ ├── mkfs.sh │ └── mkfsdata ├── toolchain.cmake └── tools ├── sbtools ├── Makefile ├── README ├── crc.c ├── crypto.cpp ├── crypto.h ├── dbparser.c ├── dbparser.h ├── elf.c ├── elf.h ├── elftosb.c ├── elftosb1.c ├── misc.c ├── misc.h ├── rsrc.c ├── rsrc.h ├── rsrctool.c ├── sb.c ├── sb.h ├── sb1.c ├── sb1.h ├── sbloader.c ├── sbtoelf.c └── xorcrypt.c └── sbtools_win ├── elftosb.exe └── sb_loader.exe /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/.clang-format -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/.gitignore -------------------------------------------------------------------------------- /99-hp39gii.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/99-hp39gii.rules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/README.md -------------------------------------------------------------------------------- /README_en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/README_en.md -------------------------------------------------------------------------------- /apps/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/CMakeLists.txt -------------------------------------------------------------------------------- /apps/coremark/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/coremark/CMakeLists.txt -------------------------------------------------------------------------------- /apps/coremark/coremark/core_list_join.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/coremark/coremark/core_list_join.c -------------------------------------------------------------------------------- /apps/coremark/coremark/core_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/coremark/coremark/core_main.c -------------------------------------------------------------------------------- /apps/coremark/coremark/core_matrix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/coremark/coremark/core_matrix.c -------------------------------------------------------------------------------- /apps/coremark/coremark/core_portme.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/coremark/coremark/core_portme.c -------------------------------------------------------------------------------- /apps/coremark/coremark/core_portme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/coremark/coremark/core_portme.h -------------------------------------------------------------------------------- /apps/coremark/coremark/core_state.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/coremark/coremark/core_state.c -------------------------------------------------------------------------------- /apps/coremark/coremark/core_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/coremark/coremark/core_util.c -------------------------------------------------------------------------------- /apps/coremark/coremark/coremark.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/coremark/coremark/coremark.h -------------------------------------------------------------------------------- /apps/coremark/crt0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/coremark/crt0.c -------------------------------------------------------------------------------- /apps/coremark/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/coremark/main.c -------------------------------------------------------------------------------- /apps/coremark/stub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/coremark/stub.c -------------------------------------------------------------------------------- /apps/emu48/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/emu48/CMakeLists.txt -------------------------------------------------------------------------------- /apps/emu48/MacTypePatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/emu48/MacTypePatch.h -------------------------------------------------------------------------------- /apps/emu48/MacWinAPIPatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/emu48/MacWinAPIPatch.h -------------------------------------------------------------------------------- /apps/emu48/app_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/emu48/app_config.h -------------------------------------------------------------------------------- /apps/emu48/core/apple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/emu48/core/apple.c -------------------------------------------------------------------------------- /apps/emu48/core/apple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/emu48/core/apple.h -------------------------------------------------------------------------------- /apps/emu48/core/debugger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/emu48/core/debugger.h -------------------------------------------------------------------------------- /apps/emu48/core/emu48.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/emu48/core/emu48.h -------------------------------------------------------------------------------- /apps/emu48/core/engine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/emu48/core/engine.c -------------------------------------------------------------------------------- /apps/emu48/core/external.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/emu48/core/external.c -------------------------------------------------------------------------------- /apps/emu48/core/fetch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/emu48/core/fetch.c -------------------------------------------------------------------------------- /apps/emu48/core/i28f160.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/emu48/core/i28f160.c -------------------------------------------------------------------------------- /apps/emu48/core/i28f160.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/emu48/core/i28f160.h -------------------------------------------------------------------------------- /apps/emu48/core/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/emu48/core/io.h -------------------------------------------------------------------------------- /apps/emu48/core/keyboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/emu48/core/keyboard.c -------------------------------------------------------------------------------- /apps/emu48/core/kml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/emu48/core/kml.h -------------------------------------------------------------------------------- /apps/emu48/core/lowbat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/emu48/core/lowbat.c -------------------------------------------------------------------------------- /apps/emu48/core/mops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/emu48/core/mops.c -------------------------------------------------------------------------------- /apps/emu48/core/opcodes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/emu48/core/opcodes.c -------------------------------------------------------------------------------- /apps/emu48/core/opcodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/emu48/core/opcodes.h -------------------------------------------------------------------------------- /apps/emu48/core/ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/emu48/core/ops.h -------------------------------------------------------------------------------- /apps/emu48/core/rpl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/emu48/core/rpl.c -------------------------------------------------------------------------------- /apps/emu48/core/settings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/emu48/core/settings.c -------------------------------------------------------------------------------- /apps/emu48/core/stack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/emu48/core/stack.c -------------------------------------------------------------------------------- /apps/emu48/core/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/emu48/core/types.h -------------------------------------------------------------------------------- /apps/emu48/crt0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/emu48/crt0.c -------------------------------------------------------------------------------- /apps/emu48/disable/debugger.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/emu48/disable/debugger.c -------------------------------------------------------------------------------- /apps/emu48/disable/disasm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/emu48/disable/disasm.c -------------------------------------------------------------------------------- /apps/emu48/disable/display.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/emu48/disable/display.c -------------------------------------------------------------------------------- /apps/emu48/disable/emu48.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/emu48/disable/emu48.c -------------------------------------------------------------------------------- /apps/emu48/disable/files.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/emu48/disable/files.c -------------------------------------------------------------------------------- /apps/emu48/disable/kml.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/emu48/disable/kml.c -------------------------------------------------------------------------------- /apps/emu48/disable/serial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/emu48/disable/serial.c -------------------------------------------------------------------------------- /apps/emu48/disable/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/emu48/disable/timer.c -------------------------------------------------------------------------------- /apps/emu48/emu48_display.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/emu48/emu48_display.c -------------------------------------------------------------------------------- /apps/emu48/emu48_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/emu48/emu48_file.c -------------------------------------------------------------------------------- /apps/emu48/emu48_kb_39g.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/emu48/emu48_kb_39g.h -------------------------------------------------------------------------------- /apps/emu48/emu48_keyboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/emu48/emu48_keyboard.c -------------------------------------------------------------------------------- /apps/emu48/emu48_keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/emu48/emu48_keyboard.h -------------------------------------------------------------------------------- /apps/emu48/emu48_porting.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/emu48/emu48_porting.c -------------------------------------------------------------------------------- /apps/emu48/emu48_serial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/emu48/emu48_serial.c -------------------------------------------------------------------------------- /apps/emu48/emu48_timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/emu48/emu48_timer.c -------------------------------------------------------------------------------- /apps/emu48/keys_39gii.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/emu48/keys_39gii.h -------------------------------------------------------------------------------- /apps/emu48/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/emu48/main.c -------------------------------------------------------------------------------- /apps/emu48/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/emu48/pch.h -------------------------------------------------------------------------------- /apps/emu48/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/emu48/resource.h -------------------------------------------------------------------------------- /apps/emu48/stub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/emu48/stub.c -------------------------------------------------------------------------------- /apps/exploader.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/exploader.exe -------------------------------------------------------------------------------- /apps/faultTask/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/faultTask/CMakeLists.txt -------------------------------------------------------------------------------- /apps/faultTask/app_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/faultTask/app_config.h -------------------------------------------------------------------------------- /apps/faultTask/crt0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/faultTask/crt0.c -------------------------------------------------------------------------------- /apps/faultTask/keys_39gii.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/faultTask/keys_39gii.h -------------------------------------------------------------------------------- /apps/faultTask/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/faultTask/main.c -------------------------------------------------------------------------------- /apps/faultTask/stub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/faultTask/stub.c -------------------------------------------------------------------------------- /apps/gameboy/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/gameboy/CMakeLists.txt -------------------------------------------------------------------------------- /apps/gameboy/app_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/gameboy/app_config.h -------------------------------------------------------------------------------- /apps/gameboy/crt0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/gameboy/crt0.c -------------------------------------------------------------------------------- /apps/gameboy/gb/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/gameboy/gb/CMakeLists.txt -------------------------------------------------------------------------------- /apps/gameboy/gb/cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/gameboy/gb/cpu.c -------------------------------------------------------------------------------- /apps/gameboy/gb/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/gameboy/gb/cpu.h -------------------------------------------------------------------------------- /apps/gameboy/gb/interrupt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/gameboy/gb/interrupt.c -------------------------------------------------------------------------------- /apps/gameboy/gb/interrupt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/gameboy/gb/interrupt.h -------------------------------------------------------------------------------- /apps/gameboy/gb/lcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/gameboy/gb/lcd.c -------------------------------------------------------------------------------- /apps/gameboy/gb/lcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/gameboy/gb/lcd.h -------------------------------------------------------------------------------- /apps/gameboy/gb/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/gameboy/gb/main.c -------------------------------------------------------------------------------- /apps/gameboy/gb/mbc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/gameboy/gb/mbc.c -------------------------------------------------------------------------------- /apps/gameboy/gb/mbc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/gameboy/gb/mbc.h -------------------------------------------------------------------------------- /apps/gameboy/gb/mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/gameboy/gb/mem.c -------------------------------------------------------------------------------- /apps/gameboy/gb/mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/gameboy/gb/mem.h -------------------------------------------------------------------------------- /apps/gameboy/gb/rom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/gameboy/gb/rom.c -------------------------------------------------------------------------------- /apps/gameboy/gb/rom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/gameboy/gb/rom.h -------------------------------------------------------------------------------- /apps/gameboy/gb/sdl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/gameboy/gb/sdl.c -------------------------------------------------------------------------------- /apps/gameboy/gb/sdl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/gameboy/gb/sdl.h -------------------------------------------------------------------------------- /apps/gameboy/gb/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/gameboy/gb/timer.c -------------------------------------------------------------------------------- /apps/gameboy/gb/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/gameboy/gb/timer.h -------------------------------------------------------------------------------- /apps/gameboy/keys_39gii.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/gameboy/keys_39gii.h -------------------------------------------------------------------------------- /apps/gameboy/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/gameboy/main.c -------------------------------------------------------------------------------- /apps/gameboy/stub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/gameboy/stub.c -------------------------------------------------------------------------------- /apps/helloworld/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/helloworld/CMakeLists.txt -------------------------------------------------------------------------------- /apps/helloworld/app_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/helloworld/app_config.h -------------------------------------------------------------------------------- /apps/helloworld/crt0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/helloworld/crt0.c -------------------------------------------------------------------------------- /apps/helloworld/keys_39gii.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/helloworld/keys_39gii.h -------------------------------------------------------------------------------- /apps/helloworld/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/helloworld/main.c -------------------------------------------------------------------------------- /apps/helloworld/stub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/helloworld/stub.c -------------------------------------------------------------------------------- /apps/khicas/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/CMakeLists.txt -------------------------------------------------------------------------------- /apps/khicas/app_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/app_config.h -------------------------------------------------------------------------------- /apps/khicas/crt0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/crt0.c -------------------------------------------------------------------------------- /apps/khicas/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/font.h -------------------------------------------------------------------------------- /apps/khicas/keys_39gii.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/keys_39gii.h -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/Equation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/giac39/Equation.h -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/giac39/Makefile -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/giac39/README -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/addin.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/giac39/addin.ld -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/alg_ext.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/giac39/alg_ext.cc -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/alg_ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/giac39/alg_ext.h -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/blaswrap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/giac39/blaswrap.h -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/catalog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/giac39/catalog.h -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/clapack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/giac39/clapack.h -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/cocoa.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/giac39/cocoa.cc -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/cocoa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/giac39/cocoa.h -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/giac39/config.h -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/console.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/giac39/console.cc -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/giac39/console.h -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/crt0.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/giac39/crt0.s -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/csturm.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/giac39/csturm.cc -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/csturm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/giac39/csturm.h -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/dConsole.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/giac39/dConsole.h -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/giac39/debug.c -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/giac39/debug.h -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/giac39/defs.h -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/derive.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/giac39/derive.cc -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/derive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/giac39/derive.h -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/desolve.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/giac39/desolve.cc -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/desolve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/giac39/desolve.h -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/dispatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/giac39/dispatch.h -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/eigen.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/giac39/eigen.bmp -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/elf.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/giac39/elf.ld -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/ezgcd.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/giac39/ezgcd.cc -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/ezgcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/giac39/ezgcd.h -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/f2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/giac39/f2c.h -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/file.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/giac39/file.cc -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/giac39/file.h -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/first.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/giac39/first.cc -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/first.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/giac39/first.h -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/giac39/font.h -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/font7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/giac39/font7.c -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/fraction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/giac39/fraction.h -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/gauss.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/giac39/gauss.cc -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/gauss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/giac39/gauss.h -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/gausspol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/giac39/gausspol.h -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/gen.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/giac39/gen.cc -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/gen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/giac39/gen.h -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/giac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/giac39/giac.h -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/giacPCH.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/giac39/giacPCH.h -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/giacintl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/giac39/giacintl.h -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/gl2ps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/giac39/gl2ps.h -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/global.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/giac39/global.cc -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/giac39/global.h -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/graphe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/giac39/graphe.h -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/help.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/giac39/help.cc -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/help.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/giac39/help.h -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/hist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/giac39/hist.h -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/history.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/giac39/history.h -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/icon.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/giac39/icon.bmp -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/ifactor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/giac39/ifactor.cc -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/ifactor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/giac39/ifactor.h -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/index.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/giac39/index.cc -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/giac39/index.h -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/intg.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/giac39/intg.cc -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/intg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/giac39/intg.h -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/intgab.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/giac39/intgab.cc -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/intgab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/giac39/intgab.h -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/isom.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/giac39/isom.cc -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/isom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/giac39/isom.h -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/k_csdk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/giac39/k_csdk.c -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/k_csdk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/giac39/k_csdk.h -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/k_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/giac39/k_defs.h -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/kadd.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/giac39/kadd.cc -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/kdisplay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/giac39/kdisplay.h -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/giac39/keyboard.h -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/khicas.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/giac39/khicas.bmp -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/lexer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/giac39/lexer.h -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/libText.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/giac39/libText.c -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/libText.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/giac39/libText.h -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/libfx.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/lin.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/giac39/lin.cc -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/lin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/giac39/lin.h -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/logo.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/giac39/logo.bmp -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/giac39/logo.png -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/lpsolve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/giac39/lpsolve.h -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/giac39/main.cc -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/giac39/main.h -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/maple.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/giac39/maple.cc -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/maple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/giac39/maple.h -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/giac39/math.c -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/mathml.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/giac39/mathml.cc -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/mathml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/giac39/mathml.h -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/memmgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/giac39/memmgr.h -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/giac39/memory.c -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/menuGUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/giac39/menuGUI.h -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/menuen.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/giac39/menuen.cc -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/menufr.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/giac39/menufr.cc -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/misc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/giac39/misc.cc -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/giac39/misc.h -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/mken: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/giac39/mken -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/mkfr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/giac39/mkfr -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/modpoly.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/giac39/modpoly.cc -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/modpoly.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/giac39/modpoly.h -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/monomial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/giac39/monomial.h -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/moyal.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/giac39/moyal.cc -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/moyal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/giac39/moyal.h -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/opengl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/giac39/opengl.h -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/pari.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/giac39/pari.cc -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/pari.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/giac39/pari.h -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/giac39/path.h -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/permu.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/giac39/permu.cc -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/permu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/giac39/permu.h -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/plot.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/giac39/plot.cc -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/plot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/giac39/plot.h -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/plot3d.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/giac39/plot3d.cc -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/plot3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/giac39/plot3d.h -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/poly.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/giac39/poly.h -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/porting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/giac39/porting.h -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/prizm.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/giac39/prizm.ld -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/prog.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/giac39/prog.cc -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/prog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/giac39/prog.h -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/quater.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/giac39/quater.cc -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/quater.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/giac39/quater.h -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/renee.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/giac39/renee.h -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/risch.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/giac39/risch.cc -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/risch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/giac39/risch.h -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/rpn.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/giac39/rpn.cc -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/rpn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/giac39/rpn.h -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/series.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/giac39/series.cc -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/series.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/giac39/series.h -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/softmath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/giac39/softmath.h -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/solve.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/giac39/solve.cc -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/solve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/giac39/solve.h -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/sparse.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/giac39/sparse.cc -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/sparse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/giac39/sparse.h -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/static.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/giac39/static.h -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/static_lexer_empty.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/stdstream: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/giac39/stdstream -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/subst.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/giac39/subst.cc -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/subst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/giac39/subst.h -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/sym2poly.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/giac39/sym2poly.h -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/symbolic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/giac39/symbolic.h -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/syscalls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/giac39/syscalls.h -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/syscalls.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/giac39/syscalls.s -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/tex.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/giac39/tex.cc -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/tex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/giac39/tex.h -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/textGUI.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/giac39/textGUI.cc -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/textGUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/giac39/textGUI.h -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/threaded.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/giac39/threaded.h -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/ti89.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/giac39/ti89.cc -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/ti89.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/giac39/ti89.h -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/tinymt32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/giac39/tinymt32.h -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/unary.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/giac39/unary.cc -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/unary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/giac39/unary.h -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/update39: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/giac39/update39 -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/usual.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/giac39/usual.cc -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/usual.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/giac39/usual.h -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/vecteur.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/giac39/vecteur.cc -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/vecteur.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/giac39/vecteur.h -------------------------------------------------------------------------------- /apps/khicas/khicas_src/giac39/vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/giac39/vector.h -------------------------------------------------------------------------------- /apps/khicas/khicas_src/gmp-6.1.2/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/gmp-6.1.2/AUTHORS -------------------------------------------------------------------------------- /apps/khicas/khicas_src/gmp-6.1.2/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/gmp-6.1.2/COPYING -------------------------------------------------------------------------------- /apps/khicas/khicas_src/gmp-6.1.2/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/gmp-6.1.2/INSTALL -------------------------------------------------------------------------------- /apps/khicas/khicas_src/gmp-6.1.2/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/khicas_src/gmp-6.1.2/NEWS -------------------------------------------------------------------------------- /apps/khicas/khicas_src/gmp-6.1.2/stamp-h1: -------------------------------------------------------------------------------- 1 | timestamp for config.h 2 | -------------------------------------------------------------------------------- /apps/khicas/khicas_src/libtommath-0.39/CVS/Root: -------------------------------------------------------------------------------- 1 | /cvs 2 | -------------------------------------------------------------------------------- /apps/khicas/khicas_src/libtommath-0.39/demo/CVS/Root: -------------------------------------------------------------------------------- 1 | /cvs 2 | -------------------------------------------------------------------------------- /apps/khicas/khicas_src/libtommath-0.39/etc/CVS/Root: -------------------------------------------------------------------------------- 1 | /cvs 2 | -------------------------------------------------------------------------------- /apps/khicas/khicas_src/libtommath-0.39/logs/CVS/Root: -------------------------------------------------------------------------------- 1 | /cvs 2 | -------------------------------------------------------------------------------- /apps/khicas/khicas_src/libtommath-0.39/logs/invmod.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/khicas/khicas_src/libtommath-0.39/mtest/CVS/Root: -------------------------------------------------------------------------------- 1 | /cvs 2 | -------------------------------------------------------------------------------- /apps/khicas/khicas_src/libtommath-0.39/pics/CVS/Root: -------------------------------------------------------------------------------- 1 | /cvs 2 | -------------------------------------------------------------------------------- /apps/khicas/khicas_src/libtommath-0.39/pre_gen/CVS/Entries: -------------------------------------------------------------------------------- 1 | /mpi.c/1.6/Fri Mar 31 14:18:47 2006// 2 | D 3 | -------------------------------------------------------------------------------- /apps/khicas/khicas_src/libtommath-0.39/pre_gen/CVS/Root: -------------------------------------------------------------------------------- 1 | /cvs 2 | -------------------------------------------------------------------------------- /apps/khicas/khicas_src/libtommath-0.39/tombc/CVS/Root: -------------------------------------------------------------------------------- 1 | /cvs 2 | -------------------------------------------------------------------------------- /apps/khicas/libs/libcas.libcpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/libs/libcas.libcpp -------------------------------------------------------------------------------- /apps/khicas/libs/libkcasgui.libcpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/libs/libkcasgui.libcpp -------------------------------------------------------------------------------- /apps/khicas/libs/libmpy.libc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/libs/libmpy.libc -------------------------------------------------------------------------------- /apps/khicas/libs/libtommath.libc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/libs/libtommath.libc -------------------------------------------------------------------------------- /apps/khicas/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/main.c -------------------------------------------------------------------------------- /apps/khicas/porting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/porting.cpp -------------------------------------------------------------------------------- /apps/khicas/stub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/khicas/stub.c -------------------------------------------------------------------------------- /apps/llapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/llapi.c -------------------------------------------------------------------------------- /apps/llapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/llapi.h -------------------------------------------------------------------------------- /apps/riscvsim/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/riscvsim/CMakeLists.txt -------------------------------------------------------------------------------- /apps/riscvsim/app_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/riscvsim/app_config.h -------------------------------------------------------------------------------- /apps/riscvsim/crt0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/riscvsim/crt0.c -------------------------------------------------------------------------------- /apps/riscvsim/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/riscvsim/debug.c -------------------------------------------------------------------------------- /apps/riscvsim/decode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/riscvsim/decode.c -------------------------------------------------------------------------------- /apps/riscvsim/decode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/riscvsim/decode.h -------------------------------------------------------------------------------- /apps/riscvsim/jit-gen-arm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/riscvsim/jit-gen-arm.c -------------------------------------------------------------------------------- /apps/riscvsim/jit-gen-arm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/riscvsim/jit-gen-arm.h -------------------------------------------------------------------------------- /apps/riscvsim/jit-rules-arm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/riscvsim/jit-rules-arm.h -------------------------------------------------------------------------------- /apps/riscvsim/keys_39gii.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/riscvsim/keys_39gii.h -------------------------------------------------------------------------------- /apps/riscvsim/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/riscvsim/main.c -------------------------------------------------------------------------------- /apps/riscvsim/mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/riscvsim/mem.h -------------------------------------------------------------------------------- /apps/riscvsim/memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/riscvsim/memory.c -------------------------------------------------------------------------------- /apps/riscvsim/opcode_str.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/riscvsim/opcode_str.h -------------------------------------------------------------------------------- /apps/riscvsim/simulator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/riscvsim/simulator.c -------------------------------------------------------------------------------- /apps/riscvsim/simulator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/riscvsim/simulator.h -------------------------------------------------------------------------------- /apps/riscvsim/stub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/riscvsim/stub.c -------------------------------------------------------------------------------- /apps/riscvsim/testCode/coremark/pr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/riscvsim/testCode/coremark/pr.c -------------------------------------------------------------------------------- /apps/riscvsim/testCode/test1/ld.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/riscvsim/testCode/test1/ld.lds -------------------------------------------------------------------------------- /apps/riscvsim/testCode/test1/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/riscvsim/testCode/test1/main.c -------------------------------------------------------------------------------- /apps/riscvsim/testCode/test1/pr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/riscvsim/testCode/test1/pr.c -------------------------------------------------------------------------------- /apps/script/ld.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/script/ld.lds -------------------------------------------------------------------------------- /apps/shell_gui/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/shell_gui/CMakeLists.txt -------------------------------------------------------------------------------- /apps/shell_gui/app_config.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | 4 | #define INFO3 "StackSize = 2000" 5 | 6 | -------------------------------------------------------------------------------- /apps/shell_gui/crt0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/shell_gui/crt0.c -------------------------------------------------------------------------------- /apps/shell_gui/cursor_icon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/shell_gui/cursor_icon.c -------------------------------------------------------------------------------- /apps/shell_gui/fe/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/shell_gui/fe/LICENSE -------------------------------------------------------------------------------- /apps/shell_gui/framework/filelist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/shell_gui/framework/filelist.txt -------------------------------------------------------------------------------- /apps/shell_gui/framework/ui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/shell_gui/framework/ui.c -------------------------------------------------------------------------------- /apps/shell_gui/framework/ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/shell_gui/framework/ui.h -------------------------------------------------------------------------------- /apps/shell_gui/framework/ui_events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/shell_gui/framework/ui_events.h -------------------------------------------------------------------------------- /apps/shell_gui/framework/ui_helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/shell_gui/framework/ui_helpers.c -------------------------------------------------------------------------------- /apps/shell_gui/framework/ui_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/shell_gui/framework/ui_helpers.h -------------------------------------------------------------------------------- /apps/shell_gui/keys_39gii.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/shell_gui/keys_39gii.h -------------------------------------------------------------------------------- /apps/shell_gui/lv_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/shell_gui/lv_conf.h -------------------------------------------------------------------------------- /apps/shell_gui/lvfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/shell_gui/lvfs.c -------------------------------------------------------------------------------- /apps/shell_gui/lvfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/shell_gui/lvfs.h -------------------------------------------------------------------------------- /apps/shell_gui/lvgl/.codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/shell_gui/lvgl/.codecov.yml -------------------------------------------------------------------------------- /apps/shell_gui/lvgl/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/shell_gui/lvgl/.editorconfig -------------------------------------------------------------------------------- /apps/shell_gui/lvgl/.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | open_collective: lvgl 2 | -------------------------------------------------------------------------------- /apps/shell_gui/lvgl/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/shell_gui/lvgl/.gitignore -------------------------------------------------------------------------------- /apps/shell_gui/lvgl/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/shell_gui/lvgl/CMakeLists.txt -------------------------------------------------------------------------------- /apps/shell_gui/lvgl/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/shell_gui/lvgl/Kconfig -------------------------------------------------------------------------------- /apps/shell_gui/lvgl/LICENCE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/shell_gui/lvgl/LICENCE.txt -------------------------------------------------------------------------------- /apps/shell_gui/lvgl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/shell_gui/lvgl/README.md -------------------------------------------------------------------------------- /apps/shell_gui/lvgl/README_pt_BR.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/shell_gui/lvgl/README_pt_BR.md -------------------------------------------------------------------------------- /apps/shell_gui/lvgl/README_zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/shell_gui/lvgl/README_zh.md -------------------------------------------------------------------------------- /apps/shell_gui/lvgl/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/shell_gui/lvgl/SConscript -------------------------------------------------------------------------------- /apps/shell_gui/lvgl/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/shell_gui/lvgl/component.mk -------------------------------------------------------------------------------- /apps/shell_gui/lvgl/demos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/shell_gui/lvgl/demos/README.md -------------------------------------------------------------------------------- /apps/shell_gui/lvgl/demos/lv_demos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/shell_gui/lvgl/demos/lv_demos.h -------------------------------------------------------------------------------- /apps/shell_gui/lvgl/demos/lv_demos.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/shell_gui/lvgl/demos/lv_demos.mk -------------------------------------------------------------------------------- /apps/shell_gui/lvgl/docs/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/shell_gui/lvgl/docs/CHANGELOG.md -------------------------------------------------------------------------------- /apps/shell_gui/lvgl/docs/ROADMAP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/shell_gui/lvgl/docs/ROADMAP.md -------------------------------------------------------------------------------- /apps/shell_gui/lvgl/docs/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/shell_gui/lvgl/docs/build.py -------------------------------------------------------------------------------- /apps/shell_gui/lvgl/docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/shell_gui/lvgl/docs/conf.py -------------------------------------------------------------------------------- /apps/shell_gui/lvgl/docs/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/shell_gui/lvgl/docs/favicon.png -------------------------------------------------------------------------------- /apps/shell_gui/lvgl/docs/get-started/os/freertos.md: -------------------------------------------------------------------------------- 1 | # FreeRTOS 2 | 3 | TODO -------------------------------------------------------------------------------- /apps/shell_gui/lvgl/docs/get-started/os/zephyr.md: -------------------------------------------------------------------------------- 1 | # Zephyr 2 | 3 | TODO -------------------------------------------------------------------------------- /apps/shell_gui/lvgl/docs/get-started/platforms/stm32.md: -------------------------------------------------------------------------------- 1 | 2 | # STM32 3 | 4 | TODO 5 | -------------------------------------------------------------------------------- /apps/shell_gui/lvgl/docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/shell_gui/lvgl/docs/index.md -------------------------------------------------------------------------------- /apps/shell_gui/lvgl/docs/libs/bmp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/shell_gui/lvgl/docs/libs/bmp.md -------------------------------------------------------------------------------- /apps/shell_gui/lvgl/docs/libs/gif.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/shell_gui/lvgl/docs/libs/gif.md -------------------------------------------------------------------------------- /apps/shell_gui/lvgl/docs/libs/png.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/shell_gui/lvgl/docs/libs/png.md -------------------------------------------------------------------------------- /apps/shell_gui/lvgl/docs/libs/sjpg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/shell_gui/lvgl/docs/libs/sjpg.md -------------------------------------------------------------------------------- /apps/shell_gui/lvgl/docs/misc/sys.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/shell_gui/lvgl/docs/misc/sys.png -------------------------------------------------------------------------------- /apps/shell_gui/lvgl/docs/overview/new_widget.md: -------------------------------------------------------------------------------- 1 | 2 | # New widget 3 | 4 | -------------------------------------------------------------------------------- /apps/shell_gui/lvgl/docs/overview/renderers/dma2d.md: -------------------------------------------------------------------------------- 1 | # DMA2D GPU 2 | 3 | TODO 4 | 5 | -------------------------------------------------------------------------------- /apps/shell_gui/lvgl/docs/overview/renderers/pxp-vglite.md: -------------------------------------------------------------------------------- 1 | # NXP PXP and VGLite GPU 2 | 3 | TODO 4 | 5 | -------------------------------------------------------------------------------- /apps/shell_gui/lvgl/docs/overview/renderers/sdl.md: -------------------------------------------------------------------------------- 1 | # SDL renderer 2 | 3 | TODO 4 | 5 | -------------------------------------------------------------------------------- /apps/shell_gui/lvgl/docs/overview/renderers/sw.md: -------------------------------------------------------------------------------- 1 | # Software renderer 2 | 3 | TODO 4 | 5 | -------------------------------------------------------------------------------- /apps/shell_gui/lvgl/env_support/zephyr/module.yml: -------------------------------------------------------------------------------- 1 | build: 2 | cmake: . 3 | -------------------------------------------------------------------------------- /apps/shell_gui/lvgl/idf_component.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/shell_gui/lvgl/idf_component.yml -------------------------------------------------------------------------------- /apps/shell_gui/lvgl/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/shell_gui/lvgl/library.json -------------------------------------------------------------------------------- /apps/shell_gui/lvgl/lvgl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/shell_gui/lvgl/lvgl.h -------------------------------------------------------------------------------- /apps/shell_gui/lvgl/lvgl.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/shell_gui/lvgl/lvgl.mk -------------------------------------------------------------------------------- /apps/shell_gui/lvgl/scripts/.gitignore: -------------------------------------------------------------------------------- 1 | CHANGELOG_LAST.md 2 | -------------------------------------------------------------------------------- /apps/shell_gui/lvgl/scripts/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/shell_gui/lvgl/scripts/Doxyfile -------------------------------------------------------------------------------- /apps/shell_gui/lvgl/scripts/release/commits.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/shell_gui/lvgl/src/core/lv_obj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/shell_gui/lvgl/src/core/lv_obj.c -------------------------------------------------------------------------------- /apps/shell_gui/lvgl/src/core/lv_obj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/shell_gui/lvgl/src/core/lv_obj.h -------------------------------------------------------------------------------- /apps/shell_gui/lvgl/src/extra/others/fragment/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/shell_gui/lvgl/src/hal/lv_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/shell_gui/lvgl/src/hal/lv_hal.h -------------------------------------------------------------------------------- /apps/shell_gui/lvgl/src/hal/lv_hal.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/shell_gui/lvgl/src/hal/lv_hal.mk -------------------------------------------------------------------------------- /apps/shell_gui/lvgl/src/lv_api_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/shell_gui/lvgl/src/lv_api_map.h -------------------------------------------------------------------------------- /apps/shell_gui/lvgl/src/lvgl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/shell_gui/lvgl/src/lvgl.h -------------------------------------------------------------------------------- /apps/shell_gui/lvgl/src/misc/lv_fs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/shell_gui/lvgl/src/misc/lv_fs.c -------------------------------------------------------------------------------- /apps/shell_gui/lvgl/src/misc/lv_fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/shell_gui/lvgl/src/misc/lv_fs.h -------------------------------------------------------------------------------- /apps/shell_gui/lvgl/src/misc/lv_gc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/shell_gui/lvgl/src/misc/lv_gc.c -------------------------------------------------------------------------------- /apps/shell_gui/lvgl/src/misc/lv_gc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/shell_gui/lvgl/src/misc/lv_gc.h -------------------------------------------------------------------------------- /apps/shell_gui/lvgl/src/misc/lv_ll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/shell_gui/lvgl/src/misc/lv_ll.c -------------------------------------------------------------------------------- /apps/shell_gui/lvgl/src/misc/lv_ll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/shell_gui/lvgl/src/misc/lv_ll.h -------------------------------------------------------------------------------- /apps/shell_gui/lvgl/src/misc/lv_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/shell_gui/lvgl/src/misc/lv_log.c -------------------------------------------------------------------------------- /apps/shell_gui/lvgl/src/misc/lv_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/shell_gui/lvgl/src/misc/lv_log.h -------------------------------------------------------------------------------- /apps/shell_gui/lvgl/src/misc/lv_lru.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/shell_gui/lvgl/src/misc/lv_lru.c -------------------------------------------------------------------------------- /apps/shell_gui/lvgl/src/misc/lv_lru.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/shell_gui/lvgl/src/misc/lv_lru.h -------------------------------------------------------------------------------- /apps/shell_gui/lvgl/src/misc/lv_mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/shell_gui/lvgl/src/misc/lv_mem.c -------------------------------------------------------------------------------- /apps/shell_gui/lvgl/src/misc/lv_mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/shell_gui/lvgl/src/misc/lv_mem.h -------------------------------------------------------------------------------- /apps/shell_gui/lvgl/src/misc/lv_txt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/shell_gui/lvgl/src/misc/lv_txt.c -------------------------------------------------------------------------------- /apps/shell_gui/lvgl/src/misc/lv_txt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/shell_gui/lvgl/src/misc/lv_txt.h -------------------------------------------------------------------------------- /apps/shell_gui/lvgl/tests/.gitignore: -------------------------------------------------------------------------------- 1 | *.out 2 | *_Runner.c 3 | -------------------------------------------------------------------------------- /apps/shell_gui/lvgl/tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/shell_gui/lvgl/tests/README.md -------------------------------------------------------------------------------- /apps/shell_gui/lvgl/tests/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/shell_gui/lvgl/tests/config.yml -------------------------------------------------------------------------------- /apps/shell_gui/lvgl/tests/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/shell_gui/lvgl/tests/main.py -------------------------------------------------------------------------------- /apps/shell_gui/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/shell_gui/main.c -------------------------------------------------------------------------------- /apps/shell_gui/mouse_cursor_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/shell_gui/mouse_cursor_icon.png -------------------------------------------------------------------------------- /apps/shell_gui/stub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/shell_gui/stub.c -------------------------------------------------------------------------------- /apps/wasm3/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/wasm3/CMakeLists.txt -------------------------------------------------------------------------------- /apps/wasm3/app_config.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | 4 | #define INFO3 "StackSize = 1000" 5 | 6 | -------------------------------------------------------------------------------- /apps/wasm3/cm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/wasm3/cm.h -------------------------------------------------------------------------------- /apps/wasm3/core/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/wasm3/core/CMakeLists.txt -------------------------------------------------------------------------------- /apps/wasm3/core/extra/fib32.wasm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/wasm3/core/extra/fib32.wasm.h -------------------------------------------------------------------------------- /apps/wasm3/core/extra/fib64.wasm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/wasm3/core/extra/fib64.wasm.h -------------------------------------------------------------------------------- /apps/wasm3/core/extra/wasi_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/wasm3/core/extra/wasi_core.h -------------------------------------------------------------------------------- /apps/wasm3/core/m3_api_libc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/wasm3/core/m3_api_libc.c -------------------------------------------------------------------------------- /apps/wasm3/core/m3_api_libc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/wasm3/core/m3_api_libc.h -------------------------------------------------------------------------------- /apps/wasm3/core/m3_api_meta_wasi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/wasm3/core/m3_api_meta_wasi.c -------------------------------------------------------------------------------- /apps/wasm3/core/m3_api_tracer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/wasm3/core/m3_api_tracer.c -------------------------------------------------------------------------------- /apps/wasm3/core/m3_api_tracer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/wasm3/core/m3_api_tracer.h -------------------------------------------------------------------------------- /apps/wasm3/core/m3_api_uvwasi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/wasm3/core/m3_api_uvwasi.c -------------------------------------------------------------------------------- /apps/wasm3/core/m3_api_wasi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/wasm3/core/m3_api_wasi.c -------------------------------------------------------------------------------- /apps/wasm3/core/m3_api_wasi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/wasm3/core/m3_api_wasi.h -------------------------------------------------------------------------------- /apps/wasm3/core/m3_bind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/wasm3/core/m3_bind.c -------------------------------------------------------------------------------- /apps/wasm3/core/m3_bind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/wasm3/core/m3_bind.h -------------------------------------------------------------------------------- /apps/wasm3/core/m3_code.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/wasm3/core/m3_code.c -------------------------------------------------------------------------------- /apps/wasm3/core/m3_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/wasm3/core/m3_code.h -------------------------------------------------------------------------------- /apps/wasm3/core/m3_compile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/wasm3/core/m3_compile.c -------------------------------------------------------------------------------- /apps/wasm3/core/m3_compile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/wasm3/core/m3_compile.h -------------------------------------------------------------------------------- /apps/wasm3/core/m3_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/wasm3/core/m3_config.h -------------------------------------------------------------------------------- /apps/wasm3/core/m3_config_platforms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/wasm3/core/m3_config_platforms.h -------------------------------------------------------------------------------- /apps/wasm3/core/m3_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/wasm3/core/m3_core.c -------------------------------------------------------------------------------- /apps/wasm3/core/m3_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/wasm3/core/m3_core.h -------------------------------------------------------------------------------- /apps/wasm3/core/m3_env.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/wasm3/core/m3_env.c -------------------------------------------------------------------------------- /apps/wasm3/core/m3_env.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/wasm3/core/m3_env.h -------------------------------------------------------------------------------- /apps/wasm3/core/m3_exception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/wasm3/core/m3_exception.h -------------------------------------------------------------------------------- /apps/wasm3/core/m3_exec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/wasm3/core/m3_exec.c -------------------------------------------------------------------------------- /apps/wasm3/core/m3_exec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/wasm3/core/m3_exec.h -------------------------------------------------------------------------------- /apps/wasm3/core/m3_exec_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/wasm3/core/m3_exec_defs.h -------------------------------------------------------------------------------- /apps/wasm3/core/m3_function.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/wasm3/core/m3_function.c -------------------------------------------------------------------------------- /apps/wasm3/core/m3_function.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/wasm3/core/m3_function.h -------------------------------------------------------------------------------- /apps/wasm3/core/m3_info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/wasm3/core/m3_info.c -------------------------------------------------------------------------------- /apps/wasm3/core/m3_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/wasm3/core/m3_info.h -------------------------------------------------------------------------------- /apps/wasm3/core/m3_math_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/wasm3/core/m3_math_utils.h -------------------------------------------------------------------------------- /apps/wasm3/core/m3_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/wasm3/core/m3_module.c -------------------------------------------------------------------------------- /apps/wasm3/core/m3_parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/wasm3/core/m3_parse.c -------------------------------------------------------------------------------- /apps/wasm3/core/wasm3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/wasm3/core/wasm3.h -------------------------------------------------------------------------------- /apps/wasm3/core/wasm3_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/wasm3/core/wasm3_defs.h -------------------------------------------------------------------------------- /apps/wasm3/crt0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/wasm3/crt0.c -------------------------------------------------------------------------------- /apps/wasm3/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/wasm3/main.c -------------------------------------------------------------------------------- /apps/wasm3/stub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/wasm3/stub.c -------------------------------------------------------------------------------- /apps/wasm3/wasi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/wasm3/wasi.c -------------------------------------------------------------------------------- /apps/wasm3/wasi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/apps/wasm3/wasi.h -------------------------------------------------------------------------------- /boot0/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/boot0/CMakeLists.txt -------------------------------------------------------------------------------- /boot0/boot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/boot0/boot.c -------------------------------------------------------------------------------- /boot0/bsp/board.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/boot0/bsp/board.c -------------------------------------------------------------------------------- /boot0/bsp/board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/boot0/bsp/board.h -------------------------------------------------------------------------------- /boot0/bsp/clk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/boot0/bsp/clk.c -------------------------------------------------------------------------------- /boot0/bsp/clk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/boot0/bsp/clk.h -------------------------------------------------------------------------------- /boot0/bsp/display.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/boot0/bsp/display.c -------------------------------------------------------------------------------- /boot0/bsp/font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/boot0/bsp/font.c -------------------------------------------------------------------------------- /boot0/bsp/irq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/boot0/bsp/irq.c -------------------------------------------------------------------------------- /boot0/bsp/keyboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/boot0/bsp/keyboard.c -------------------------------------------------------------------------------- /boot0/bsp/keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/boot0/bsp/keyboard.h -------------------------------------------------------------------------------- /boot0/bsp/nand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/boot0/bsp/nand.c -------------------------------------------------------------------------------- /boot0/bsp/registers/chip_io_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/boot0/bsp/registers/chip_io_map.h -------------------------------------------------------------------------------- /boot0/bsp/registers/hw_dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/boot0/bsp/registers/hw_dma.h -------------------------------------------------------------------------------- /boot0/bsp/registers/hw_irq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/boot0/bsp/registers/hw_irq.h -------------------------------------------------------------------------------- /boot0/bsp/registers/regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/boot0/bsp/registers/regs.h -------------------------------------------------------------------------------- /boot0/bsp/registers/regs_i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/boot0/bsp/registers/regs_i.h -------------------------------------------------------------------------------- /boot0/bsp/registers/regsapbh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/boot0/bsp/registers/regsapbh.h -------------------------------------------------------------------------------- /boot0/bsp/registers/regsapbx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/boot0/bsp/registers/regsapbx.h -------------------------------------------------------------------------------- /boot0/bsp/registers/regsaudioin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/boot0/bsp/registers/regsaudioin.h -------------------------------------------------------------------------------- /boot0/bsp/registers/regsaudioout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/boot0/bsp/registers/regsaudioout.h -------------------------------------------------------------------------------- /boot0/bsp/registers/regsaxi_ahb0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/boot0/bsp/registers/regsaxi_ahb0.h -------------------------------------------------------------------------------- /boot0/bsp/registers/regsaxis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/boot0/bsp/registers/regsaxis.h -------------------------------------------------------------------------------- /boot0/bsp/registers/regsbch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/boot0/bsp/registers/regsbch.h -------------------------------------------------------------------------------- /boot0/bsp/registers/regsclkctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/boot0/bsp/registers/regsclkctrl.h -------------------------------------------------------------------------------- /boot0/bsp/registers/regsdcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/boot0/bsp/registers/regsdcp.h -------------------------------------------------------------------------------- /boot0/bsp/registers/regsdigctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/boot0/bsp/registers/regsdigctl.h -------------------------------------------------------------------------------- /boot0/bsp/registers/regsdram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/boot0/bsp/registers/regsdram.h -------------------------------------------------------------------------------- /boot0/bsp/registers/regsdri.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/boot0/bsp/registers/regsdri.h -------------------------------------------------------------------------------- /boot0/bsp/registers/regsecc8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/boot0/bsp/registers/regsecc8.h -------------------------------------------------------------------------------- /boot0/bsp/registers/regsemi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/boot0/bsp/registers/regsemi.h -------------------------------------------------------------------------------- /boot0/bsp/registers/regsgpiomon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/boot0/bsp/registers/regsgpiomon.h -------------------------------------------------------------------------------- /boot0/bsp/registers/regsgpmi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/boot0/bsp/registers/regsgpmi.h -------------------------------------------------------------------------------- /boot0/bsp/registers/regsi2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/boot0/bsp/registers/regsi2c.h -------------------------------------------------------------------------------- /boot0/bsp/registers/regsicoll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/boot0/bsp/registers/regsicoll.h -------------------------------------------------------------------------------- /boot0/bsp/registers/regsir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/boot0/bsp/registers/regsir.h -------------------------------------------------------------------------------- /boot0/bsp/registers/regslcdif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/boot0/bsp/registers/regslcdif.h -------------------------------------------------------------------------------- /boot0/bsp/registers/regslradc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/boot0/bsp/registers/regslradc.h -------------------------------------------------------------------------------- /boot0/bsp/registers/regsocotp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/boot0/bsp/registers/regsocotp.h -------------------------------------------------------------------------------- /boot0/bsp/registers/regspinctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/boot0/bsp/registers/regspinctrl.h -------------------------------------------------------------------------------- /boot0/bsp/registers/regspower.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/boot0/bsp/registers/regspower.h -------------------------------------------------------------------------------- /boot0/bsp/registers/regspwm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/boot0/bsp/registers/regspwm.h -------------------------------------------------------------------------------- /boot0/bsp/registers/regspxp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/boot0/bsp/registers/regspxp.h -------------------------------------------------------------------------------- /boot0/bsp/registers/regsrtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/boot0/bsp/registers/regsrtc.h -------------------------------------------------------------------------------- /boot0/bsp/registers/regssaif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/boot0/bsp/registers/regssaif.h -------------------------------------------------------------------------------- /boot0/bsp/registers/regssimdbg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/boot0/bsp/registers/regssimdbg.h -------------------------------------------------------------------------------- /boot0/bsp/registers/regssimgpmisel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/boot0/bsp/registers/regssimgpmisel.h -------------------------------------------------------------------------------- /boot0/bsp/registers/regssimmemsel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/boot0/bsp/registers/regssimmemsel.h -------------------------------------------------------------------------------- /boot0/bsp/registers/regssimsspsel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/boot0/bsp/registers/regssimsspsel.h -------------------------------------------------------------------------------- /boot0/bsp/registers/regsspdif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/boot0/bsp/registers/regsspdif.h -------------------------------------------------------------------------------- /boot0/bsp/registers/regsssp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/boot0/bsp/registers/regsssp.h -------------------------------------------------------------------------------- /boot0/bsp/registers/regsssp_i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/boot0/bsp/registers/regsssp_i.h -------------------------------------------------------------------------------- /boot0/bsp/registers/regssy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/boot0/bsp/registers/regssy.h -------------------------------------------------------------------------------- /boot0/bsp/registers/regssydma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/boot0/bsp/registers/regssydma.h -------------------------------------------------------------------------------- /boot0/bsp/registers/regstimrot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/boot0/bsp/registers/regstimrot.h -------------------------------------------------------------------------------- /boot0/bsp/registers/regstvenc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/boot0/bsp/registers/regstvenc.h -------------------------------------------------------------------------------- /boot0/bsp/registers/regsuartapp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/boot0/bsp/registers/regsuartapp.h -------------------------------------------------------------------------------- /boot0/bsp/registers/regsuartdbg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/boot0/bsp/registers/regsuartdbg.h -------------------------------------------------------------------------------- /boot0/bsp/registers/regsusbctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/boot0/bsp/registers/regsusbctrl.h -------------------------------------------------------------------------------- /boot0/bsp/registers/regsusbphy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/boot0/bsp/registers/regsusbphy.h -------------------------------------------------------------------------------- /boot0/exception.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/boot0/exception.c -------------------------------------------------------------------------------- /boot0/loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/boot0/loader.h -------------------------------------------------------------------------------- /boot0/logo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/boot0/logo.h -------------------------------------------------------------------------------- /boot0/lwipopts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/boot0/lwipopts.h -------------------------------------------------------------------------------- /boot0/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/boot0/main.c -------------------------------------------------------------------------------- /boot0/script/build_fw.bd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/boot0/script/build_fw.bd -------------------------------------------------------------------------------- /boot0/script/ld.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/boot0/script/ld.lds -------------------------------------------------------------------------------- /boot0/stmp3770_firmware.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/boot0/stmp3770_firmware.c -------------------------------------------------------------------------------- /boot0/stmp3770_firmware.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/boot0/stmp3770_firmware.h -------------------------------------------------------------------------------- /boot0/stub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/boot0/stub.c -------------------------------------------------------------------------------- /boot0/sys_arch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/boot0/sys_arch.c -------------------------------------------------------------------------------- /boot0/tusb_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/boot0/tusb_config.h -------------------------------------------------------------------------------- /boot0/usb_descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/boot0/usb_descriptors.c -------------------------------------------------------------------------------- /boot0/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/boot0/utils.c -------------------------------------------------------------------------------- /boot0/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/boot0/utils.h -------------------------------------------------------------------------------- /boot0/webdata/fsdata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/boot0/webdata/fsdata.c -------------------------------------------------------------------------------- /boot0/webdata/html/fs/200.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /boot0/webdata/html/fs/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/boot0/webdata/html/fs/404.html -------------------------------------------------------------------------------- /boot0/webdata/html/fs/done.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/boot0/webdata/html/fs/done.html -------------------------------------------------------------------------------- /boot0/webdata/html/fs/file_manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/boot0/webdata/html/fs/file_manager.js -------------------------------------------------------------------------------- /boot0/webdata/html/fs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/boot0/webdata/html/fs/index.html -------------------------------------------------------------------------------- /boot0/webdata/html/fs/lfs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/boot0/webdata/html/fs/lfs.js -------------------------------------------------------------------------------- /boot0/webdata/html/fs/lfs_err.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/boot0/webdata/html/fs/lfs_err.js -------------------------------------------------------------------------------- /boot0/webdata/html/fs/lfs_js.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/boot0/webdata/html/fs/lfs_js.js -------------------------------------------------------------------------------- /boot0/webdata/html/mkfs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/boot0/webdata/html/mkfs.sh -------------------------------------------------------------------------------- /boot0/webdata/html/mkfsdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/boot0/webdata/html/mkfsdata -------------------------------------------------------------------------------- /boot1/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/boot1/CMakeLists.txt -------------------------------------------------------------------------------- /boot1/bsp/bsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/boot1/bsp/bsp.c -------------------------------------------------------------------------------- /boot1/bsp/bsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/boot1/bsp/bsp.h -------------------------------------------------------------------------------- /boot1/bsp/irq.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /boot1/bsp/nand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/boot1/bsp/nand.c -------------------------------------------------------------------------------- /boot1/bsp/registers/chip_io_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/boot1/bsp/registers/chip_io_map.h -------------------------------------------------------------------------------- /boot1/bsp/registers/hw_dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/boot1/bsp/registers/hw_dma.h -------------------------------------------------------------------------------- /boot1/bsp/registers/hw_irq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/boot1/bsp/registers/hw_irq.h -------------------------------------------------------------------------------- /boot1/bsp/registers/regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/boot1/bsp/registers/regs.h -------------------------------------------------------------------------------- /boot1/bsp/registers/regs_i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/boot1/bsp/registers/regs_i.h -------------------------------------------------------------------------------- /boot1/bsp/registers/regsapbh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/boot1/bsp/registers/regsapbh.h -------------------------------------------------------------------------------- /boot1/bsp/registers/regsapbx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/boot1/bsp/registers/regsapbx.h -------------------------------------------------------------------------------- /boot1/bsp/registers/regsaudioin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/boot1/bsp/registers/regsaudioin.h -------------------------------------------------------------------------------- /boot1/bsp/registers/regsaudioout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/boot1/bsp/registers/regsaudioout.h -------------------------------------------------------------------------------- /boot1/bsp/registers/regsaxi_ahb0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/boot1/bsp/registers/regsaxi_ahb0.h -------------------------------------------------------------------------------- /boot1/bsp/registers/regsaxis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/boot1/bsp/registers/regsaxis.h -------------------------------------------------------------------------------- /boot1/bsp/registers/regsbch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/boot1/bsp/registers/regsbch.h -------------------------------------------------------------------------------- /boot1/bsp/registers/regsclkctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/boot1/bsp/registers/regsclkctrl.h -------------------------------------------------------------------------------- /boot1/bsp/registers/regsdcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/boot1/bsp/registers/regsdcp.h -------------------------------------------------------------------------------- /boot1/bsp/registers/regsdigctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/boot1/bsp/registers/regsdigctl.h -------------------------------------------------------------------------------- /boot1/bsp/registers/regsdram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/boot1/bsp/registers/regsdram.h -------------------------------------------------------------------------------- /boot1/bsp/registers/regsdri.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/boot1/bsp/registers/regsdri.h -------------------------------------------------------------------------------- /boot1/bsp/registers/regsecc8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/boot1/bsp/registers/regsecc8.h -------------------------------------------------------------------------------- /boot1/bsp/registers/regsemi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/boot1/bsp/registers/regsemi.h -------------------------------------------------------------------------------- /boot1/bsp/registers/regsgpiomon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/boot1/bsp/registers/regsgpiomon.h -------------------------------------------------------------------------------- /boot1/bsp/registers/regsgpmi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/boot1/bsp/registers/regsgpmi.h -------------------------------------------------------------------------------- /boot1/bsp/registers/regsi2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/boot1/bsp/registers/regsi2c.h -------------------------------------------------------------------------------- /boot1/bsp/registers/regsicoll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/boot1/bsp/registers/regsicoll.h -------------------------------------------------------------------------------- /boot1/bsp/registers/regsir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/boot1/bsp/registers/regsir.h -------------------------------------------------------------------------------- /boot1/bsp/registers/regslcdif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/boot1/bsp/registers/regslcdif.h -------------------------------------------------------------------------------- /boot1/bsp/registers/regslradc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/boot1/bsp/registers/regslradc.h -------------------------------------------------------------------------------- /boot1/bsp/registers/regsocotp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/boot1/bsp/registers/regsocotp.h -------------------------------------------------------------------------------- /boot1/bsp/registers/regspinctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/boot1/bsp/registers/regspinctrl.h -------------------------------------------------------------------------------- /boot1/bsp/registers/regspower.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/boot1/bsp/registers/regspower.h -------------------------------------------------------------------------------- /boot1/bsp/registers/regspwm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/boot1/bsp/registers/regspwm.h -------------------------------------------------------------------------------- /boot1/bsp/registers/regspxp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/boot1/bsp/registers/regspxp.h -------------------------------------------------------------------------------- /boot1/bsp/registers/regsrtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/boot1/bsp/registers/regsrtc.h -------------------------------------------------------------------------------- /boot1/bsp/registers/regssaif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/boot1/bsp/registers/regssaif.h -------------------------------------------------------------------------------- /boot1/bsp/registers/regssimdbg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/boot1/bsp/registers/regssimdbg.h -------------------------------------------------------------------------------- /boot1/bsp/registers/regssimgpmisel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/boot1/bsp/registers/regssimgpmisel.h -------------------------------------------------------------------------------- /boot1/bsp/registers/regssimmemsel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/boot1/bsp/registers/regssimmemsel.h -------------------------------------------------------------------------------- /boot1/bsp/registers/regssimsspsel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/boot1/bsp/registers/regssimsspsel.h -------------------------------------------------------------------------------- /boot1/bsp/registers/regsspdif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/boot1/bsp/registers/regsspdif.h -------------------------------------------------------------------------------- /boot1/bsp/registers/regsssp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/boot1/bsp/registers/regsssp.h -------------------------------------------------------------------------------- /boot1/bsp/registers/regsssp_i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/boot1/bsp/registers/regsssp_i.h -------------------------------------------------------------------------------- /boot1/bsp/registers/regssy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/boot1/bsp/registers/regssy.h -------------------------------------------------------------------------------- /boot1/bsp/registers/regssydma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/boot1/bsp/registers/regssydma.h -------------------------------------------------------------------------------- /boot1/bsp/registers/regstimrot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/boot1/bsp/registers/regstimrot.h -------------------------------------------------------------------------------- /boot1/bsp/registers/regstvenc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/boot1/bsp/registers/regstvenc.h -------------------------------------------------------------------------------- /boot1/bsp/registers/regsuartapp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/boot1/bsp/registers/regsuartapp.h -------------------------------------------------------------------------------- /boot1/bsp/registers/regsuartdbg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/boot1/bsp/registers/regsuartdbg.h -------------------------------------------------------------------------------- /boot1/bsp/registers/regsusbctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/boot1/bsp/registers/regsusbctrl.h -------------------------------------------------------------------------------- /boot1/bsp/registers/regsusbphy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/boot1/bsp/registers/regsusbphy.h -------------------------------------------------------------------------------- /boot1/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/boot1/config.h -------------------------------------------------------------------------------- /boot1/exception.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/boot1/exception.c -------------------------------------------------------------------------------- /boot1/head.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/boot1/head.c -------------------------------------------------------------------------------- /boot1/libc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/boot1/libc.c -------------------------------------------------------------------------------- /boot1/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/boot1/main.c -------------------------------------------------------------------------------- /boot1/mm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/boot1/mm.c -------------------------------------------------------------------------------- /boot1/mm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/boot1/mm.h -------------------------------------------------------------------------------- /boot1/script/ld.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/boot1/script/ld.lds -------------------------------------------------------------------------------- /boot1/stub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/boot1/stub.c -------------------------------------------------------------------------------- /boot1/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/boot1/utils.c -------------------------------------------------------------------------------- /boot1/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/boot1/utils.h -------------------------------------------------------------------------------- /default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/default.nix -------------------------------------------------------------------------------- /library/TinyUSB/lwip/FILES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/library/TinyUSB/lwip/FILES -------------------------------------------------------------------------------- /library/TinyUSB/lwip/api/api_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/library/TinyUSB/lwip/api/api_lib.c -------------------------------------------------------------------------------- /library/TinyUSB/lwip/api/api_msg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/library/TinyUSB/lwip/api/api_msg.c -------------------------------------------------------------------------------- /library/TinyUSB/lwip/api/err.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/library/TinyUSB/lwip/api/err.c -------------------------------------------------------------------------------- /library/TinyUSB/lwip/api/if_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/library/TinyUSB/lwip/api/if_api.c -------------------------------------------------------------------------------- /library/TinyUSB/lwip/api/netbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/library/TinyUSB/lwip/api/netbuf.c -------------------------------------------------------------------------------- /library/TinyUSB/lwip/api/netdb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/library/TinyUSB/lwip/api/netdb.c -------------------------------------------------------------------------------- /library/TinyUSB/lwip/api/netifapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/library/TinyUSB/lwip/api/netifapi.c -------------------------------------------------------------------------------- /library/TinyUSB/lwip/api/sockets.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/library/TinyUSB/lwip/api/sockets.c -------------------------------------------------------------------------------- /library/TinyUSB/lwip/api/tcpip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/library/TinyUSB/lwip/api/tcpip.c -------------------------------------------------------------------------------- /library/TinyUSB/lwip/apps/http/fs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/library/TinyUSB/lwip/apps/http/fs.c -------------------------------------------------------------------------------- /library/TinyUSB/lwip/apps/mdns/mdns.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/library/TinyUSB/lwip/apps/mdns/mdns.c -------------------------------------------------------------------------------- /library/TinyUSB/lwip/apps/mqtt/mqtt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/library/TinyUSB/lwip/apps/mqtt/mqtt.c -------------------------------------------------------------------------------- /library/TinyUSB/lwip/apps/smtp/smtp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/library/TinyUSB/lwip/apps/smtp/smtp.c -------------------------------------------------------------------------------- /library/TinyUSB/lwip/apps/sntp/sntp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/library/TinyUSB/lwip/apps/sntp/sntp.c -------------------------------------------------------------------------------- /library/TinyUSB/lwip/arch/cc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/library/TinyUSB/lwip/arch/cc.h -------------------------------------------------------------------------------- /library/TinyUSB/lwip/arch/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/library/TinyUSB/lwip/arch/cpu.h -------------------------------------------------------------------------------- /library/TinyUSB/lwip/arch/perf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/library/TinyUSB/lwip/arch/perf.h -------------------------------------------------------------------------------- /library/TinyUSB/lwip/arch/sys_arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/library/TinyUSB/lwip/arch/sys_arch.h -------------------------------------------------------------------------------- /library/TinyUSB/lwip/core/altcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/library/TinyUSB/lwip/core/altcp.c -------------------------------------------------------------------------------- /library/TinyUSB/lwip/core/altcp_tcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/library/TinyUSB/lwip/core/altcp_tcp.c -------------------------------------------------------------------------------- /library/TinyUSB/lwip/core/def.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/library/TinyUSB/lwip/core/def.c -------------------------------------------------------------------------------- /library/TinyUSB/lwip/core/dns.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/library/TinyUSB/lwip/core/dns.c -------------------------------------------------------------------------------- /library/TinyUSB/lwip/core/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/library/TinyUSB/lwip/core/init.c -------------------------------------------------------------------------------- /library/TinyUSB/lwip/core/ip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/library/TinyUSB/lwip/core/ip.c -------------------------------------------------------------------------------- /library/TinyUSB/lwip/core/ipv4/dhcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/library/TinyUSB/lwip/core/ipv4/dhcp.c -------------------------------------------------------------------------------- /library/TinyUSB/lwip/core/ipv4/icmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/library/TinyUSB/lwip/core/ipv4/icmp.c -------------------------------------------------------------------------------- /library/TinyUSB/lwip/core/ipv4/igmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/library/TinyUSB/lwip/core/ipv4/igmp.c -------------------------------------------------------------------------------- /library/TinyUSB/lwip/core/ipv4/ip4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/library/TinyUSB/lwip/core/ipv4/ip4.c -------------------------------------------------------------------------------- /library/TinyUSB/lwip/core/ipv6/ip6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/library/TinyUSB/lwip/core/ipv6/ip6.c -------------------------------------------------------------------------------- /library/TinyUSB/lwip/core/ipv6/mld6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/library/TinyUSB/lwip/core/ipv6/mld6.c -------------------------------------------------------------------------------- /library/TinyUSB/lwip/core/ipv6/nd6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/library/TinyUSB/lwip/core/ipv6/nd6.c -------------------------------------------------------------------------------- /library/TinyUSB/lwip/core/mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/library/TinyUSB/lwip/core/mem.c -------------------------------------------------------------------------------- /library/TinyUSB/lwip/core/memp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/library/TinyUSB/lwip/core/memp.c -------------------------------------------------------------------------------- /library/TinyUSB/lwip/core/netif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/library/TinyUSB/lwip/core/netif.c -------------------------------------------------------------------------------- /library/TinyUSB/lwip/core/pbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/library/TinyUSB/lwip/core/pbuf.c -------------------------------------------------------------------------------- /library/TinyUSB/lwip/core/raw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/library/TinyUSB/lwip/core/raw.c -------------------------------------------------------------------------------- /library/TinyUSB/lwip/core/stats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/library/TinyUSB/lwip/core/stats.c -------------------------------------------------------------------------------- /library/TinyUSB/lwip/core/sys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/library/TinyUSB/lwip/core/sys.c -------------------------------------------------------------------------------- /library/TinyUSB/lwip/core/tcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/library/TinyUSB/lwip/core/tcp.c -------------------------------------------------------------------------------- /library/TinyUSB/lwip/core/tcp_in.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/library/TinyUSB/lwip/core/tcp_in.c -------------------------------------------------------------------------------- /library/TinyUSB/lwip/core/tcp_out.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/library/TinyUSB/lwip/core/tcp_out.c -------------------------------------------------------------------------------- /library/TinyUSB/lwip/core/timeouts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/library/TinyUSB/lwip/core/timeouts.c -------------------------------------------------------------------------------- /library/TinyUSB/lwip/core/udp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/library/TinyUSB/lwip/core/udp.c -------------------------------------------------------------------------------- /library/TinyUSB/lwip/netif/FILES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/library/TinyUSB/lwip/netif/FILES -------------------------------------------------------------------------------- /library/TinyUSB/lwip/netif/bridgeif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/library/TinyUSB/lwip/netif/bridgeif.c -------------------------------------------------------------------------------- /library/TinyUSB/lwip/netif/ethernet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/library/TinyUSB/lwip/netif/ethernet.c -------------------------------------------------------------------------------- /library/TinyUSB/lwip/netif/lowpan6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/library/TinyUSB/lwip/netif/lowpan6.c -------------------------------------------------------------------------------- /library/TinyUSB/lwip/netif/ppp/auth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/library/TinyUSB/lwip/netif/ppp/auth.c -------------------------------------------------------------------------------- /library/TinyUSB/lwip/netif/ppp/ccp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/library/TinyUSB/lwip/netif/ppp/ccp.c -------------------------------------------------------------------------------- /library/TinyUSB/lwip/netif/ppp/eap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/library/TinyUSB/lwip/netif/ppp/eap.c -------------------------------------------------------------------------------- /library/TinyUSB/lwip/netif/ppp/ecp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/library/TinyUSB/lwip/netif/ppp/ecp.c -------------------------------------------------------------------------------- /library/TinyUSB/lwip/netif/ppp/fsm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/library/TinyUSB/lwip/netif/ppp/fsm.c -------------------------------------------------------------------------------- /library/TinyUSB/lwip/netif/ppp/ipcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/library/TinyUSB/lwip/netif/ppp/ipcp.c -------------------------------------------------------------------------------- /library/TinyUSB/lwip/netif/ppp/lcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/library/TinyUSB/lwip/netif/ppp/lcp.c -------------------------------------------------------------------------------- /library/TinyUSB/lwip/netif/ppp/mppe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/library/TinyUSB/lwip/netif/ppp/mppe.c -------------------------------------------------------------------------------- /library/TinyUSB/lwip/netif/ppp/ppp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/library/TinyUSB/lwip/netif/ppp/ppp.c -------------------------------------------------------------------------------- /library/TinyUSB/lwip/netif/ppp/upap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/library/TinyUSB/lwip/netif/ppp/upap.c -------------------------------------------------------------------------------- /library/TinyUSB/lwip/netif/ppp/vj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/library/TinyUSB/lwip/netif/ppp/vj.c -------------------------------------------------------------------------------- /library/TinyUSB/lwip/netif/slipif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/library/TinyUSB/lwip/netif/slipif.c -------------------------------------------------------------------------------- /library/TinyUSB/lwip/netif/zepif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/library/TinyUSB/lwip/netif/zepif.c -------------------------------------------------------------------------------- /library/TinyUSB/networking/dhserver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/library/TinyUSB/networking/dhserver.c -------------------------------------------------------------------------------- /library/TinyUSB/networking/dhserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/library/TinyUSB/networking/dhserver.h -------------------------------------------------------------------------------- /library/TinyUSB/networking/dnserver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/library/TinyUSB/networking/dnserver.c -------------------------------------------------------------------------------- /library/TinyUSB/networking/dnserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/library/TinyUSB/networking/dnserver.h -------------------------------------------------------------------------------- /library/TinyUSB/networking/ndis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/library/TinyUSB/networking/ndis.h -------------------------------------------------------------------------------- /library/TinyUSB/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/library/TinyUSB/src/CMakeLists.txt -------------------------------------------------------------------------------- /library/TinyUSB/src/class/cdc/cdc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/library/TinyUSB/src/class/cdc/cdc.h -------------------------------------------------------------------------------- /library/TinyUSB/src/class/dfu/dfu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/library/TinyUSB/src/class/dfu/dfu.h -------------------------------------------------------------------------------- /library/TinyUSB/src/class/hid/hid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/library/TinyUSB/src/class/hid/hid.h -------------------------------------------------------------------------------- /library/TinyUSB/src/class/midi/midi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/library/TinyUSB/src/class/midi/midi.h -------------------------------------------------------------------------------- /library/TinyUSB/src/class/msc/msc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/library/TinyUSB/src/class/msc/msc.h -------------------------------------------------------------------------------- /library/TinyUSB/src/class/net/ncm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/library/TinyUSB/src/class/net/ncm.h -------------------------------------------------------------------------------- /library/TinyUSB/src/common/tusb_mcu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/library/TinyUSB/src/common/tusb_mcu.h -------------------------------------------------------------------------------- /library/TinyUSB/src/device/dcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/library/TinyUSB/src/device/dcd.h -------------------------------------------------------------------------------- /library/TinyUSB/src/device/usbd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/library/TinyUSB/src/device/usbd.c -------------------------------------------------------------------------------- /library/TinyUSB/src/device/usbd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/library/TinyUSB/src/device/usbd.h -------------------------------------------------------------------------------- /library/TinyUSB/src/device/usbd_pvt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/library/TinyUSB/src/device/usbd_pvt.h -------------------------------------------------------------------------------- /library/TinyUSB/src/host/hcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/library/TinyUSB/src/host/hcd.h -------------------------------------------------------------------------------- /library/TinyUSB/src/host/hub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/library/TinyUSB/src/host/hub.c -------------------------------------------------------------------------------- /library/TinyUSB/src/host/hub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/library/TinyUSB/src/host/hub.h -------------------------------------------------------------------------------- /library/TinyUSB/src/host/usbh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/library/TinyUSB/src/host/usbh.c -------------------------------------------------------------------------------- /library/TinyUSB/src/host/usbh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/library/TinyUSB/src/host/usbh.h -------------------------------------------------------------------------------- /library/TinyUSB/src/host/usbh_pvt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/library/TinyUSB/src/host/usbh_pvt.h -------------------------------------------------------------------------------- /library/TinyUSB/src/osal/osal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/library/TinyUSB/src/osal/osal.h -------------------------------------------------------------------------------- /library/TinyUSB/src/osal/osal_none.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/library/TinyUSB/src/osal/osal_none.h -------------------------------------------------------------------------------- /library/TinyUSB/src/osal/osal_pico.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/library/TinyUSB/src/osal/osal_pico.h -------------------------------------------------------------------------------- /library/TinyUSB/src/osal/osal_rtx4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/library/TinyUSB/src/osal/osal_rtx4.h -------------------------------------------------------------------------------- /library/TinyUSB/src/tinyusb.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/library/TinyUSB/src/tinyusb.mk -------------------------------------------------------------------------------- /library/TinyUSB/src/tusb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/library/TinyUSB/src/tusb.c -------------------------------------------------------------------------------- /library/TinyUSB/src/tusb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/library/TinyUSB/src/tusb.h -------------------------------------------------------------------------------- /library/TinyUSB/src/tusb_option.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/library/TinyUSB/src/tusb_option.h -------------------------------------------------------------------------------- /library/TinyUSB/src/typec/pd_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/library/TinyUSB/src/typec/pd_types.h -------------------------------------------------------------------------------- /library/TinyUSB/src/typec/tcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/library/TinyUSB/src/typec/tcd.h -------------------------------------------------------------------------------- /library/TinyUSB/src/typec/usbc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/library/TinyUSB/src/typec/usbc.c -------------------------------------------------------------------------------- /library/TinyUSB/src/typec/usbc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/library/TinyUSB/src/typec/usbc.h -------------------------------------------------------------------------------- /library/lfs/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/library/lfs/.gitattributes -------------------------------------------------------------------------------- /library/lfs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/library/lfs/.gitignore -------------------------------------------------------------------------------- /library/lfs/DESIGN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/library/lfs/DESIGN.md -------------------------------------------------------------------------------- /library/lfs/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/library/lfs/LICENSE.md -------------------------------------------------------------------------------- /library/lfs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/library/lfs/README.md -------------------------------------------------------------------------------- /library/lfs/SPEC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/library/lfs/SPEC.md -------------------------------------------------------------------------------- /library/lfs/lfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/library/lfs/lfs.c -------------------------------------------------------------------------------- /library/lfs/lfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/library/lfs/lfs.h -------------------------------------------------------------------------------- /library/lfs/lfs_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/library/lfs/lfs_util.c -------------------------------------------------------------------------------- /library/lfs/lfs_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/library/lfs/lfs_util.h -------------------------------------------------------------------------------- /library/umm_malloc-1.1.2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/library/umm_malloc-1.1.2/.gitignore -------------------------------------------------------------------------------- /library/umm_malloc-1.1.2/.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /library/umm_malloc-1.1.2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/library/umm_malloc-1.1.2/LICENSE -------------------------------------------------------------------------------- /library/umm_malloc-1.1.2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/library/umm_malloc-1.1.2/README.md -------------------------------------------------------------------------------- /library/umm_malloc-1.1.2/multitest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/library/umm_malloc-1.1.2/multitest.sh -------------------------------------------------------------------------------- /library/umm_malloc-1.1.2/project.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/library/umm_malloc-1.1.2/project.yml -------------------------------------------------------------------------------- /library/umm_malloc-1.1.2/test/support/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /library/xprintfc/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/library/xprintfc/.gitignore -------------------------------------------------------------------------------- /library/xprintfc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/library/xprintfc/LICENSE -------------------------------------------------------------------------------- /library/xprintfc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/library/xprintfc/README.md -------------------------------------------------------------------------------- /library/xprintfc/xformatc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/library/xprintfc/xformatc.c -------------------------------------------------------------------------------- /library/xprintfc/xformatc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/library/xprintfc/xformatc.h -------------------------------------------------------------------------------- /shell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/shell.nix -------------------------------------------------------------------------------- /system/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/system/CMakeLists.txt -------------------------------------------------------------------------------- /system/FreeRTOS/croutine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/system/FreeRTOS/croutine.c -------------------------------------------------------------------------------- /system/FreeRTOS/event_groups.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/system/FreeRTOS/event_groups.c -------------------------------------------------------------------------------- /system/FreeRTOS/include/FreeRTOS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/system/FreeRTOS/include/FreeRTOS.h -------------------------------------------------------------------------------- /system/FreeRTOS/include/StackMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/system/FreeRTOS/include/StackMacros.h -------------------------------------------------------------------------------- /system/FreeRTOS/include/atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/system/FreeRTOS/include/atomic.h -------------------------------------------------------------------------------- /system/FreeRTOS/include/croutine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/system/FreeRTOS/include/croutine.h -------------------------------------------------------------------------------- /system/FreeRTOS/include/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/system/FreeRTOS/include/list.h -------------------------------------------------------------------------------- /system/FreeRTOS/include/portable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/system/FreeRTOS/include/portable.h -------------------------------------------------------------------------------- /system/FreeRTOS/include/projdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/system/FreeRTOS/include/projdefs.h -------------------------------------------------------------------------------- /system/FreeRTOS/include/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/system/FreeRTOS/include/queue.h -------------------------------------------------------------------------------- /system/FreeRTOS/include/semphr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/system/FreeRTOS/include/semphr.h -------------------------------------------------------------------------------- /system/FreeRTOS/include/stdint.readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/system/FreeRTOS/include/stdint.readme -------------------------------------------------------------------------------- /system/FreeRTOS/include/task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/system/FreeRTOS/include/task.h -------------------------------------------------------------------------------- /system/FreeRTOS/include/timers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/system/FreeRTOS/include/timers.h -------------------------------------------------------------------------------- /system/FreeRTOS/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/system/FreeRTOS/list.c -------------------------------------------------------------------------------- /system/FreeRTOS/portable/heap_3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/system/FreeRTOS/portable/heap_3.c -------------------------------------------------------------------------------- /system/FreeRTOS/portable/heap_4.c_off: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/system/FreeRTOS/portable/heap_4.c_off -------------------------------------------------------------------------------- /system/FreeRTOS/portable/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/system/FreeRTOS/portable/port.c -------------------------------------------------------------------------------- /system/FreeRTOS/portable/portISR.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/system/FreeRTOS/portable/portISR.c -------------------------------------------------------------------------------- /system/FreeRTOS/portable/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/system/FreeRTOS/portable/portmacro.h -------------------------------------------------------------------------------- /system/FreeRTOS/queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/system/FreeRTOS/queue.c -------------------------------------------------------------------------------- /system/FreeRTOS/stream_buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/system/FreeRTOS/stream_buffer.c -------------------------------------------------------------------------------- /system/FreeRTOS/tasks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/system/FreeRTOS/tasks.c -------------------------------------------------------------------------------- /system/FreeRTOS/timers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/system/FreeRTOS/timers.c -------------------------------------------------------------------------------- /system/FreeRTOSConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/system/FreeRTOSConfig.h -------------------------------------------------------------------------------- /system/app_runtime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/system/app_runtime.c -------------------------------------------------------------------------------- /system/app_runtime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/system/app_runtime.h -------------------------------------------------------------------------------- /system/boot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/system/boot.c -------------------------------------------------------------------------------- /system/bsp/board.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/system/bsp/board.c -------------------------------------------------------------------------------- /system/bsp/board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/system/bsp/board.h -------------------------------------------------------------------------------- /system/bsp/clk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/system/bsp/clk.c -------------------------------------------------------------------------------- /system/bsp/display.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/system/bsp/display.c -------------------------------------------------------------------------------- /system/bsp/font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/system/bsp/font.c -------------------------------------------------------------------------------- /system/bsp/irq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/system/bsp/irq.c -------------------------------------------------------------------------------- /system/bsp/keyboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/system/bsp/keyboard.c -------------------------------------------------------------------------------- /system/bsp/keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/system/bsp/keyboard.h -------------------------------------------------------------------------------- /system/bsp/registers/chip_io_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/system/bsp/registers/chip_io_map.h -------------------------------------------------------------------------------- /system/bsp/registers/hw_dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/system/bsp/registers/hw_dma.h -------------------------------------------------------------------------------- /system/bsp/registers/hw_irq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/system/bsp/registers/hw_irq.h -------------------------------------------------------------------------------- /system/bsp/registers/regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/system/bsp/registers/regs.h -------------------------------------------------------------------------------- /system/bsp/registers/regs_i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/system/bsp/registers/regs_i.h -------------------------------------------------------------------------------- /system/bsp/registers/regsapbh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/system/bsp/registers/regsapbh.h -------------------------------------------------------------------------------- /system/bsp/registers/regsapbx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/system/bsp/registers/regsapbx.h -------------------------------------------------------------------------------- /system/bsp/registers/regsaudioin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/system/bsp/registers/regsaudioin.h -------------------------------------------------------------------------------- /system/bsp/registers/regsaudioout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/system/bsp/registers/regsaudioout.h -------------------------------------------------------------------------------- /system/bsp/registers/regsaxi_ahb0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/system/bsp/registers/regsaxi_ahb0.h -------------------------------------------------------------------------------- /system/bsp/registers/regsaxis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/system/bsp/registers/regsaxis.h -------------------------------------------------------------------------------- /system/bsp/registers/regsbch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/system/bsp/registers/regsbch.h -------------------------------------------------------------------------------- /system/bsp/registers/regsclkctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/system/bsp/registers/regsclkctrl.h -------------------------------------------------------------------------------- /system/bsp/registers/regsdcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/system/bsp/registers/regsdcp.h -------------------------------------------------------------------------------- /system/bsp/registers/regsdigctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/system/bsp/registers/regsdigctl.h -------------------------------------------------------------------------------- /system/bsp/registers/regsdram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/system/bsp/registers/regsdram.h -------------------------------------------------------------------------------- /system/bsp/registers/regsdri.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/system/bsp/registers/regsdri.h -------------------------------------------------------------------------------- /system/bsp/registers/regsecc8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/system/bsp/registers/regsecc8.h -------------------------------------------------------------------------------- /system/bsp/registers/regsemi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/system/bsp/registers/regsemi.h -------------------------------------------------------------------------------- /system/bsp/registers/regsgpiomon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/system/bsp/registers/regsgpiomon.h -------------------------------------------------------------------------------- /system/bsp/registers/regsgpmi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/system/bsp/registers/regsgpmi.h -------------------------------------------------------------------------------- /system/bsp/registers/regsi2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/system/bsp/registers/regsi2c.h -------------------------------------------------------------------------------- /system/bsp/registers/regsicoll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/system/bsp/registers/regsicoll.h -------------------------------------------------------------------------------- /system/bsp/registers/regsir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/system/bsp/registers/regsir.h -------------------------------------------------------------------------------- /system/bsp/registers/regslcdif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/system/bsp/registers/regslcdif.h -------------------------------------------------------------------------------- /system/bsp/registers/regslradc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/system/bsp/registers/regslradc.h -------------------------------------------------------------------------------- /system/bsp/registers/regsocotp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/system/bsp/registers/regsocotp.h -------------------------------------------------------------------------------- /system/bsp/registers/regspinctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/system/bsp/registers/regspinctrl.h -------------------------------------------------------------------------------- /system/bsp/registers/regspower.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/system/bsp/registers/regspower.h -------------------------------------------------------------------------------- /system/bsp/registers/regspwm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/system/bsp/registers/regspwm.h -------------------------------------------------------------------------------- /system/bsp/registers/regspxp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/system/bsp/registers/regspxp.h -------------------------------------------------------------------------------- /system/bsp/registers/regsrtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/system/bsp/registers/regsrtc.h -------------------------------------------------------------------------------- /system/bsp/registers/regssaif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/system/bsp/registers/regssaif.h -------------------------------------------------------------------------------- /system/bsp/registers/regssimdbg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/system/bsp/registers/regssimdbg.h -------------------------------------------------------------------------------- /system/bsp/registers/regssimgpmisel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/system/bsp/registers/regssimgpmisel.h -------------------------------------------------------------------------------- /system/bsp/registers/regssimmemsel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/system/bsp/registers/regssimmemsel.h -------------------------------------------------------------------------------- /system/bsp/registers/regssimsspsel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/system/bsp/registers/regssimsspsel.h -------------------------------------------------------------------------------- /system/bsp/registers/regsspdif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/system/bsp/registers/regsspdif.h -------------------------------------------------------------------------------- /system/bsp/registers/regsssp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/system/bsp/registers/regsssp.h -------------------------------------------------------------------------------- /system/bsp/registers/regsssp_i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/system/bsp/registers/regsssp_i.h -------------------------------------------------------------------------------- /system/bsp/registers/regssy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/system/bsp/registers/regssy.h -------------------------------------------------------------------------------- /system/bsp/registers/regssydma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/system/bsp/registers/regssydma.h -------------------------------------------------------------------------------- /system/bsp/registers/regstimrot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/system/bsp/registers/regstimrot.h -------------------------------------------------------------------------------- /system/bsp/registers/regstvenc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/system/bsp/registers/regstvenc.h -------------------------------------------------------------------------------- /system/bsp/registers/regsuartapp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/system/bsp/registers/regsuartapp.h -------------------------------------------------------------------------------- /system/bsp/registers/regsuartdbg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/system/bsp/registers/regsuartdbg.h -------------------------------------------------------------------------------- /system/bsp/registers/regsusbctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/system/bsp/registers/regsusbctrl.h -------------------------------------------------------------------------------- /system/bsp/registers/regsusbphy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/system/bsp/registers/regsusbphy.h -------------------------------------------------------------------------------- /system/exception.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/system/exception.c -------------------------------------------------------------------------------- /system/existos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/system/existos.h -------------------------------------------------------------------------------- /system/gdbserver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/system/gdbserver.c -------------------------------------------------------------------------------- /system/gdbserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/system/gdbserver.h -------------------------------------------------------------------------------- /system/httpd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/system/httpd.c -------------------------------------------------------------------------------- /system/hypercall.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/system/hypercall.c -------------------------------------------------------------------------------- /system/hypercall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/system/hypercall.h -------------------------------------------------------------------------------- /system/lwipopts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/system/lwipopts.h -------------------------------------------------------------------------------- /system/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/system/main.c -------------------------------------------------------------------------------- /system/printf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/system/printf.c -------------------------------------------------------------------------------- /system/script/ld.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/system/script/ld.lds -------------------------------------------------------------------------------- /system/sideload_server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/system/sideload_server.c -------------------------------------------------------------------------------- /system/sideload_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/system/sideload_server.h -------------------------------------------------------------------------------- /system/stub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/system/stub.c -------------------------------------------------------------------------------- /system/sys_mmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/system/sys_mmap.c -------------------------------------------------------------------------------- /system/sys_mmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/system/sys_mmap.h -------------------------------------------------------------------------------- /system/tusb_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/system/tusb_config.h -------------------------------------------------------------------------------- /system/usb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/system/usb.c -------------------------------------------------------------------------------- /system/usb_descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/system/usb_descriptors.c -------------------------------------------------------------------------------- /system/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/system/utils.c -------------------------------------------------------------------------------- /system/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/system/utils.h -------------------------------------------------------------------------------- /system/vfs.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /system/webdata/fsdata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/system/webdata/fsdata.c -------------------------------------------------------------------------------- /system/webdata/html/fs/200.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /system/webdata/html/fs/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/system/webdata/html/fs/404.html -------------------------------------------------------------------------------- /system/webdata/html/fs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/system/webdata/html/fs/index.html -------------------------------------------------------------------------------- /system/webdata/html/mkfs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/system/webdata/html/mkfs.sh -------------------------------------------------------------------------------- /system/webdata/html/mkfsdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/system/webdata/html/mkfsdata -------------------------------------------------------------------------------- /toolchain.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/toolchain.cmake -------------------------------------------------------------------------------- /tools/sbtools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/tools/sbtools/Makefile -------------------------------------------------------------------------------- /tools/sbtools/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/tools/sbtools/README -------------------------------------------------------------------------------- /tools/sbtools/crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/tools/sbtools/crc.c -------------------------------------------------------------------------------- /tools/sbtools/crypto.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/tools/sbtools/crypto.cpp -------------------------------------------------------------------------------- /tools/sbtools/crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/tools/sbtools/crypto.h -------------------------------------------------------------------------------- /tools/sbtools/dbparser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/tools/sbtools/dbparser.c -------------------------------------------------------------------------------- /tools/sbtools/dbparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/tools/sbtools/dbparser.h -------------------------------------------------------------------------------- /tools/sbtools/elf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/tools/sbtools/elf.c -------------------------------------------------------------------------------- /tools/sbtools/elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/tools/sbtools/elf.h -------------------------------------------------------------------------------- /tools/sbtools/elftosb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/tools/sbtools/elftosb.c -------------------------------------------------------------------------------- /tools/sbtools/elftosb1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/tools/sbtools/elftosb1.c -------------------------------------------------------------------------------- /tools/sbtools/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/tools/sbtools/misc.c -------------------------------------------------------------------------------- /tools/sbtools/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/tools/sbtools/misc.h -------------------------------------------------------------------------------- /tools/sbtools/rsrc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/tools/sbtools/rsrc.c -------------------------------------------------------------------------------- /tools/sbtools/rsrc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/tools/sbtools/rsrc.h -------------------------------------------------------------------------------- /tools/sbtools/rsrctool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/tools/sbtools/rsrctool.c -------------------------------------------------------------------------------- /tools/sbtools/sb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/tools/sbtools/sb.c -------------------------------------------------------------------------------- /tools/sbtools/sb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/tools/sbtools/sb.h -------------------------------------------------------------------------------- /tools/sbtools/sb1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/tools/sbtools/sb1.c -------------------------------------------------------------------------------- /tools/sbtools/sb1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/tools/sbtools/sb1.h -------------------------------------------------------------------------------- /tools/sbtools/sbloader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/tools/sbtools/sbloader.c -------------------------------------------------------------------------------- /tools/sbtools/sbtoelf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/tools/sbtools/sbtoelf.c -------------------------------------------------------------------------------- /tools/sbtools/xorcrypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/tools/sbtools/xorcrypt.c -------------------------------------------------------------------------------- /tools/sbtools_win/elftosb.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/tools/sbtools_win/elftosb.exe -------------------------------------------------------------------------------- /tools/sbtools_win/sb_loader.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Repeerc/ExistOS-For-HP39GII/HEAD/tools/sbtools_win/sb_loader.exe --------------------------------------------------------------------------------