├── .gitattributes
├── .gitignore
├── DevDocs
└── OSCodeDocs.md
├── Hardware
├── AMEv3
│ ├── AMEv3.PrjPCB
│ ├── AMEv3.PrjPCBStructure
│ ├── Design Rule Check - PCB1-B.drc
│ ├── Design Rule Check - PCB1-B.html
│ ├── PCB1-B-EVT2.PcbDoc
│ ├── PCB1-B.PcbDoc
│ ├── PCB1-C.PcbDoc
│ ├── PCB1.PcbDoc
│ ├── PcbLib1.PcbLib
│ ├── Project Outputs for AMEv3
│ │ ├── AMEv3.xls
│ │ ├── Design Rule Check - PCB1.drc
│ │ ├── Design Rule Check - PCB1.html
│ │ └── Status Report.Txt
│ ├── README.txt
│ ├── Schlib1.SchLib
│ └── SheetMain.SchDoc
├── ArithMaxE-V3P1
│ ├── AMEv3.Dat
│ ├── AMEv3.OutJob
│ ├── AMEv3.PrjPCB
│ ├── AMEv3.PrjPCBStructure
│ ├── AMEv3.pdf
│ ├── Design Rule Check - PCB1-B-EVT2.drc
│ ├── Design Rule Check - PCB1-B-EVT2.html
│ ├── Design Rule Check - PCB1-B.drc
│ ├── Design Rule Check - PCB1-B.html
│ ├── Output
│ │ ├── AMEv3P BOM.xlsx
│ │ ├── Design Rule Check - PCB1-B-EVT2.drc
│ │ ├── Design Rule Check - PCB1-B-EVT2.html
│ │ └── Status Report.Txt
│ ├── PCB1-B-EVT2.PcbDoc
│ ├── PCB1-B-EVT2.PcbDoc.htm
│ ├── PcbLib1.PcbLib
│ ├── Project Outputs for AMEv3
│ │ ├── Design Rule Check - PCB1.drc
│ │ ├── Design Rule Check - PCB1.html
│ │ └── Status Report.Txt
│ ├── Schlib1.SchLib
│ ├── SheetMain.SchDoc
│ └── __Previews
│ │ ├── PCB1-B-EVT2.PcbDocPreview
│ │ ├── PCB1-B.PcbDocPreview
│ │ ├── PCB1-ar.PcbDocPreview
│ │ ├── PCB1.PcbDocPreview
│ │ └── SheetMain.SchDocPreview
└── __Previews
│ └── PCB1.PcbDocPreview
├── Software
├── AMEv3
│ ├── CMSIS
│ │ ├── core_cm3.h
│ │ ├── core_cm4.h
│ │ ├── core_cm4_simd.h
│ │ ├── core_cmFunc.h
│ │ ├── core_cmInstr.h
│ │ ├── stm32f2xx.h
│ │ ├── stm32f4xx.h
│ │ ├── system_stm32f2xx-120-hse.c
│ │ ├── system_stm32f2xx-16-hse.c
│ │ ├── system_stm32f2xx-16-hsi.c
│ │ ├── system_stm32f2xx.c
│ │ ├── system_stm32f2xx.h
│ │ ├── system_stm32f4xx-168.c
│ │ ├── system_stm32f4xx-48.c
│ │ ├── system_stm32f4xx.c
│ │ └── system_stm32f4xx.h
│ ├── EWARM
│ │ ├── Exe
│ │ │ ├── Project.bin
│ │ │ ├── Project.out
│ │ │ └── Project.sim
│ │ ├── Project.dep
│ │ ├── Project.ewd
│ │ ├── Project.ewp
│ │ ├── Project.eww
│ │ ├── ProjectCustomSfr.sfr
│ │ ├── readme.txt
│ │ ├── settings
│ │ │ ├── Project.cspy.bat
│ │ │ ├── Project.dbgdt
│ │ │ ├── Project.dni
│ │ │ ├── Project.wsdt
│ │ │ ├── Project_STM32100B-EVAL.jlink
│ │ │ └── STM32F4-Discovery_Demo.cspy.bat
│ │ └── stm32f40x_flash.icf
│ ├── Eigenmath
│ │ ├── aboutGUI.cpp
│ │ ├── aboutGUI.hpp
│ │ ├── abs.cpp
│ │ ├── add.cpp
│ │ ├── adj.cpp
│ │ ├── alloc.cpp
│ │ ├── append.cpp
│ │ ├── arccos.cpp
│ │ ├── arccosh.cpp
│ │ ├── arcsin.cpp
│ │ ├── arcsinh.cpp
│ │ ├── arctan.cpp
│ │ ├── arctanh.cpp
│ │ ├── arg.cpp
│ │ ├── atomize.cpp
│ │ ├── bake.cpp
│ │ ├── besselj.cpp
│ │ ├── bessely.cpp
│ │ ├── bignum.cpp
│ │ ├── binomial.cpp
│ │ ├── catalogGUI.cpp
│ │ ├── catalogGUI.hpp
│ │ ├── ceiling.cpp
│ │ ├── choose.cpp
│ │ ├── circexp.cpp
│ │ ├── clear.cpp
│ │ ├── clock.cpp
│ │ ├── coeff.cpp
│ │ ├── cofactor.cpp
│ │ ├── condense.cpp
│ │ ├── conj.cpp
│ │ ├── cons.cpp
│ │ ├── contract.cpp
│ │ ├── cos.cpp
│ │ ├── cosh.cpp
│ │ ├── dConsole.cpp
│ │ ├── dConsole.h
│ │ ├── data.cpp
│ │ ├── decomp.cpp
│ │ ├── define.cpp
│ │ ├── defint.cpp
│ │ ├── defs.h
│ │ ├── degree.cpp
│ │ ├── denominator.cpp
│ │ ├── derivative.cpp
│ │ ├── det.cpp
│ │ ├── dirac.cpp
│ │ ├── display.cpp
│ │ ├── distill.cpp
│ │ ├── divisors.cpp
│ │ ├── dpow.cpp
│ │ ├── dsolve.cpp
│ │ ├── eigen.cpp
│ │ ├── emain.cpp
│ │ ├── emisc.cpp
│ │ ├── erf.cpp
│ │ ├── erfc.cpp
│ │ ├── eval.cpp
│ │ ├── expand.cpp
│ │ ├── expcos.cpp
│ │ ├── expsin.cpp
│ │ ├── factor.cpp
│ │ ├── factorial.cpp
│ │ ├── factorpoly.cpp
│ │ ├── factors.cpp
│ │ ├── fileGUI.cpp
│ │ ├── fileGUI.hpp
│ │ ├── fileProvider.cpp
│ │ ├── fileProvider.hpp
│ │ ├── filter.cpp
│ │ ├── find.cpp
│ │ ├── float.cpp
│ │ ├── floor.cpp
│ │ ├── for.cpp
│ │ ├── gamma.cpp
│ │ ├── gcd.cpp
│ │ ├── graphicsProvider.cpp
│ │ ├── graphicsProvider.hpp
│ │ ├── guess.cpp
│ │ ├── help.h
│ │ ├── help.html
│ │ ├── hermite.cpp
│ │ ├── hilbert.cpp
│ │ ├── history.cpp
│ │ ├── imag.cpp
│ │ ├── index.cpp
│ │ ├── init.cpp
│ │ ├── inner.cpp
│ │ ├── integral.cpp
│ │ ├── inv.cpp
│ │ ├── is.cpp
│ │ ├── isprime.cpp
│ │ ├── itab.cpp
│ │ ├── itest.cpp
│ │ ├── laguerre.cpp
│ │ ├── laplace.cpp
│ │ ├── lcm.cpp
│ │ ├── leading.cpp
│ │ ├── legendre.cpp
│ │ ├── list.cpp
│ │ ├── log.cpp
│ │ ├── madd.cpp
│ │ ├── mag.cpp
│ │ ├── main.cpp
│ │ ├── mcmp.cpp
│ │ ├── menuGUI.cpp
│ │ ├── menuGUI.hpp
│ │ ├── mfactor.cpp
│ │ ├── mgcd.cpp
│ │ ├── mini-test.cpp
│ │ ├── misce.cpp
│ │ ├── mmodpow.cpp
│ │ ├── mmul.cpp
│ │ ├── mod.cpp
│ │ ├── mpow.cpp
│ │ ├── mprime.cpp
│ │ ├── mroot.cpp
│ │ ├── mscan.cpp
│ │ ├── msqrt.cpp
│ │ ├── mstr.cpp
│ │ ├── multiply.cpp
│ │ ├── nroots.cpp
│ │ ├── numerator.cpp
│ │ ├── outer.cpp
│ │ ├── partition.cpp
│ │ ├── polar.cpp
│ │ ├── pollard.cpp
│ │ ├── power.cpp
│ │ ├── prime.cpp
│ │ ├── primetab.cpp
│ │ ├── print.cpp
│ │ ├── product.cpp
│ │ ├── prototypes.h
│ │ ├── qadd.cpp
│ │ ├── qdiv.cpp
│ │ ├── qmul.cpp
│ │ ├── qpow.cpp
│ │ ├── qsub.cpp
│ │ ├── quickfactor.cpp
│ │ ├── quotient.cpp
│ │ ├── rationalize.cpp
│ │ ├── real.cpp
│ │ ├── rect.cpp
│ │ ├── rewrite.cpp
│ │ ├── roots.cpp
│ │ ├── run.cpp
│ │ ├── scan.cpp
│ │ ├── selftest.cpp
│ │ ├── selftest.h
│ │ ├── setjmp.h
│ │ ├── sgn.cpp
│ │ ├── simfac.cpp
│ │ ├── simplify.cpp
│ │ ├── sin.cpp
│ │ ├── sinh.cpp
│ │ ├── stack.cpp
│ │ ├── stdafx.h
│ │ ├── subst.cpp
│ │ ├── sum.cpp
│ │ ├── symbol.cpp
│ │ ├── tan.cpp
│ │ ├── tanh.cpp
│ │ ├── taylor.cpp
│ │ ├── tensor.cpp
│ │ ├── test-script.txt
│ │ ├── test.cpp
│ │ ├── textGUI.cpp
│ │ ├── textGUI.hpp
│ │ ├── transform.cpp
│ │ ├── transpose.cpp
│ │ ├── userfunc.cpp
│ │ ├── variables.cpp
│ │ ├── vectorize.cpp
│ │ ├── versionProvider.cpp
│ │ ├── versionProvider.hpp
│ │ └── zero.cpp
│ ├── Resources
│ │ └── Fonts
│ │ │ ├── ArithFont-SBMonoH-Regular-12.bdf
│ │ │ ├── ArithFont-SBMonoM-Regular-8.bdf
│ │ │ ├── ArithFont-SBMonoS-Regular-12.bdf
│ │ │ ├── ArithFont-SBMonoU-Regular-8.bdf
│ │ │ ├── ConvertFont-font.h-12.py
│ │ │ ├── ConvertFont-font.h-8.py
│ │ │ ├── ConvertFont-image.h-8.py
│ │ │ └── Makefile
│ ├── Startup
│ │ ├── MDK-ARM
│ │ │ ├── startup_stm32f2xx.s
│ │ │ └── startup_stm32f4xx.s
│ │ ├── startup_stm32f2xx.s
│ │ └── startup_stm32f4xx.s
│ ├── StdPeriph_Driver
│ │ ├── inc
│ │ │ ├── misc.h
│ │ │ ├── stm32f2xx_adc.h
│ │ │ ├── stm32f2xx_can.h
│ │ │ ├── stm32f2xx_crc.h
│ │ │ ├── stm32f2xx_cryp.h
│ │ │ ├── stm32f2xx_dac.h
│ │ │ ├── stm32f2xx_dbgmcu.h
│ │ │ ├── stm32f2xx_dcmi.h
│ │ │ ├── stm32f2xx_dma.h
│ │ │ ├── stm32f2xx_exti.h
│ │ │ ├── stm32f2xx_flash.h
│ │ │ ├── stm32f2xx_fsmc.h
│ │ │ ├── stm32f2xx_gpio.h
│ │ │ ├── stm32f2xx_hash.h
│ │ │ ├── stm32f2xx_i2c.h
│ │ │ ├── stm32f2xx_iwdg.h
│ │ │ ├── stm32f2xx_pwr.h
│ │ │ ├── stm32f2xx_rcc.h
│ │ │ ├── stm32f2xx_rng.h
│ │ │ ├── stm32f2xx_rtc.h
│ │ │ ├── stm32f2xx_sdio.h
│ │ │ ├── stm32f2xx_spi.h
│ │ │ ├── stm32f2xx_syscfg.h
│ │ │ ├── stm32f2xx_tim.h
│ │ │ ├── stm32f2xx_usart.h
│ │ │ ├── stm32f2xx_wwdg.h
│ │ │ ├── stm32f4xx_adc.h
│ │ │ ├── stm32f4xx_can.h
│ │ │ ├── stm32f4xx_crc.h
│ │ │ ├── stm32f4xx_cryp.h
│ │ │ ├── stm32f4xx_dac.h
│ │ │ ├── stm32f4xx_dbgmcu.h
│ │ │ ├── stm32f4xx_dcmi.h
│ │ │ ├── stm32f4xx_dma.h
│ │ │ ├── stm32f4xx_exti.h
│ │ │ ├── stm32f4xx_flash.h
│ │ │ ├── stm32f4xx_fsmc.h
│ │ │ ├── stm32f4xx_gpio.h
│ │ │ ├── stm32f4xx_hash.h
│ │ │ ├── stm32f4xx_i2c.h
│ │ │ ├── stm32f4xx_iwdg.h
│ │ │ ├── stm32f4xx_pwr.h
│ │ │ ├── stm32f4xx_rcc.h
│ │ │ ├── stm32f4xx_rng.h
│ │ │ ├── stm32f4xx_rtc.h
│ │ │ ├── stm32f4xx_sdio.h
│ │ │ ├── stm32f4xx_spi.h
│ │ │ ├── stm32f4xx_syscfg.h
│ │ │ ├── stm32f4xx_tim.h
│ │ │ ├── stm32f4xx_usart.h
│ │ │ └── stm32f4xx_wwdg.h
│ │ └── src
│ │ │ ├── misc.c
│ │ │ ├── stm32f2xx_adc.c
│ │ │ ├── stm32f2xx_can.c
│ │ │ ├── stm32f2xx_crc.c
│ │ │ ├── stm32f2xx_cryp.c
│ │ │ ├── stm32f2xx_cryp_aes.c
│ │ │ ├── stm32f2xx_cryp_des.c
│ │ │ ├── stm32f2xx_cryp_tdes.c
│ │ │ ├── stm32f2xx_dac.c
│ │ │ ├── stm32f2xx_dbgmcu.c
│ │ │ ├── stm32f2xx_dcmi.c
│ │ │ ├── stm32f2xx_dma.c
│ │ │ ├── stm32f2xx_exti.c
│ │ │ ├── stm32f2xx_flash.c
│ │ │ ├── stm32f2xx_fsmc.c
│ │ │ ├── stm32f2xx_gpio.c
│ │ │ ├── stm32f2xx_hash.c
│ │ │ ├── stm32f2xx_hash_md5.c
│ │ │ ├── stm32f2xx_hash_sha1.c
│ │ │ ├── stm32f2xx_i2c.c
│ │ │ ├── stm32f2xx_iwdg.c
│ │ │ ├── stm32f2xx_pwr.c
│ │ │ ├── stm32f2xx_rcc.c
│ │ │ ├── stm32f2xx_rng.c
│ │ │ ├── stm32f2xx_rtc.c
│ │ │ ├── stm32f2xx_sdio.c
│ │ │ ├── stm32f2xx_spi.c
│ │ │ ├── stm32f2xx_syscfg.c
│ │ │ ├── stm32f2xx_tim.c
│ │ │ ├── stm32f2xx_usart.c
│ │ │ ├── stm32f2xx_wwdg.c
│ │ │ ├── stm32f4xx_adc.c
│ │ │ ├── stm32f4xx_can.c
│ │ │ ├── stm32f4xx_crc.c
│ │ │ ├── stm32f4xx_cryp.c
│ │ │ ├── stm32f4xx_cryp_aes.c
│ │ │ ├── stm32f4xx_cryp_des.c
│ │ │ ├── stm32f4xx_cryp_tdes.c
│ │ │ ├── stm32f4xx_dac.c
│ │ │ ├── stm32f4xx_dbgmcu.c
│ │ │ ├── stm32f4xx_dcmi.c
│ │ │ ├── stm32f4xx_dma.c
│ │ │ ├── stm32f4xx_exti.c
│ │ │ ├── stm32f4xx_flash.c
│ │ │ ├── stm32f4xx_fsmc.c
│ │ │ ├── stm32f4xx_gpio.c
│ │ │ ├── stm32f4xx_hash.c
│ │ │ ├── stm32f4xx_hash_md5.c
│ │ │ ├── stm32f4xx_hash_sha1.c
│ │ │ ├── stm32f4xx_i2c.c
│ │ │ ├── stm32f4xx_iwdg.c
│ │ │ ├── stm32f4xx_pwr.c
│ │ │ ├── stm32f4xx_rcc.c
│ │ │ ├── stm32f4xx_rng.c
│ │ │ ├── stm32f4xx_rtc.c
│ │ │ ├── stm32f4xx_sdio.c
│ │ │ ├── stm32f4xx_spi.c
│ │ │ ├── stm32f4xx_syscfg.c
│ │ │ ├── stm32f4xx_tim.c
│ │ │ ├── stm32f4xx_usart.c
│ │ │ └── stm32f4xx_wwdg.c
│ ├── dac.c
│ ├── dac.h
│ ├── font.h
│ ├── g2048.c
│ ├── g2048.h
│ ├── gpio.c
│ ├── image.h
│ ├── key.c
│ ├── key.h
│ ├── lcd.c
│ ├── lcd.h
│ ├── main.c
│ ├── main.h
│ ├── pccon.c
│ ├── pccon.h
│ ├── powerman.c
│ ├── powerman.h
│ ├── rtc.c
│ ├── rtc.h
│ ├── sdcard.c
│ ├── sdcard.h
│ ├── snake.c
│ ├── spi.c
│ ├── spi.h
│ ├── spiflash.c
│ ├── spiflash.h
│ ├── stm32f2xx_conf.h
│ ├── stm32f4xx_conf.h
│ ├── stm32f4xx_it.c
│ ├── stm32f4xx_it.h
│ ├── stn.c
│ ├── stn.h
│ ├── sysbase.h
│ ├── usart.c
│ └── usart.h
└── AMEv3P
│ ├── CMSIS
│ ├── core_cm3.h
│ ├── core_cm4.h
│ ├── core_cm4_simd.h
│ ├── core_cmFunc.h
│ ├── core_cmInstr.h
│ ├── stm32f2xx.h
│ ├── stm32f4xx.h
│ ├── system_stm32f2xx-120-hse.c
│ ├── system_stm32f2xx-16-hse.c
│ ├── system_stm32f2xx-16-hsi.c
│ ├── system_stm32f2xx.c
│ ├── system_stm32f2xx.h
│ ├── system_stm32f4xx-168-hse.c
│ ├── system_stm32f4xx-48-hse.c
│ ├── system_stm32f4xx.c
│ └── system_stm32f4xx.h
│ ├── Drivers
│ ├── kbd.c
│ ├── kbd.h
│ ├── lcd.c
│ ├── lcd.h
│ ├── pm.c
│ ├── pm.h
│ ├── timing.c
│ ├── timing.h
│ ├── wdg.c
│ └── wdg.h
│ ├── EWARM
│ ├── Exe
│ │ ├── Project.bin
│ │ ├── Project.out
│ │ └── Project.sim
│ ├── Project.dep
│ ├── Project.ewd
│ ├── Project.ewp
│ ├── Project.ewt
│ ├── Project.eww
│ ├── readme.txt
│ ├── settings
│ │ ├── Project.STM32100B-EVAL.cspy.bat
│ │ ├── Project.crun
│ │ ├── Project.cspy.bat
│ │ ├── Project.dbgdt
│ │ ├── Project.dni
│ │ ├── Project.wsdt
│ │ ├── Project.wspos
│ │ ├── Project_STM32100B-EVAL.jlink
│ │ └── STM32F4-Discovery_Demo.cspy.bat
│ └── stm32f40x_flash.icf
│ ├── MDK
│ ├── Project.htm
│ ├── Project.lnp
│ ├── Project.map
│ ├── Project.plg
│ ├── Project.uvgui.Zweb
│ ├── Project.uvopt
│ ├── Project.uvproj
│ ├── Project_Target 1.dep
│ ├── aboutgui.crf
│ ├── aboutgui.d
│ ├── aboutgui.o
│ ├── abs.crf
│ ├── abs.d
│ ├── abs.o
│ ├── add.crf
│ ├── add.d
│ ├── add.o
│ ├── adj.crf
│ ├── adj.d
│ ├── adj.o
│ ├── alloc.crf
│ ├── alloc.d
│ ├── alloc.o
│ ├── append.crf
│ ├── append.d
│ ├── append.o
│ ├── arccos.crf
│ ├── arccos.d
│ ├── arccos.o
│ ├── arccosh.crf
│ ├── arccosh.d
│ ├── arccosh.o
│ ├── arcsin.crf
│ ├── arcsin.d
│ ├── arcsin.o
│ ├── arcsinh.crf
│ ├── arcsinh.d
│ ├── arcsinh.o
│ ├── arctan.crf
│ ├── arctan.d
│ ├── arctan.o
│ ├── arctanh.crf
│ ├── arctanh.d
│ ├── arctanh.o
│ ├── arg.crf
│ ├── arg.d
│ ├── arg.o
│ ├── atomize.crf
│ ├── atomize.d
│ ├── atomize.o
│ ├── bake.crf
│ ├── bake.d
│ ├── bake.o
│ ├── besselj.crf
│ ├── besselj.d
│ ├── bessely.crf
│ ├── bessely.d
│ ├── bignum.crf
│ ├── bignum.d
│ ├── bignum.o
│ ├── binomial.crf
│ ├── binomial.d
│ ├── binomial.o
│ ├── cataloggui.d
│ ├── ceiling.crf
│ ├── ceiling.d
│ ├── ceiling.o
│ ├── choose.crf
│ ├── choose.d
│ ├── choose.o
│ ├── circexp.crf
│ ├── circexp.d
│ ├── circexp.o
│ ├── clear.crf
│ ├── clear.d
│ ├── clear.o
│ ├── clock.crf
│ ├── clock.d
│ ├── clock.o
│ ├── coeff.crf
│ ├── coeff.d
│ ├── coeff.o
│ ├── cofactor.crf
│ ├── cofactor.d
│ ├── cofactor.o
│ ├── condense.crf
│ ├── condense.d
│ ├── condense.o
│ ├── conj.crf
│ ├── conj.d
│ ├── conj.o
│ ├── cons.crf
│ ├── cons.d
│ ├── cons.o
│ ├── contract.crf
│ ├── contract.d
│ ├── contract.o
│ ├── cos.crf
│ ├── cos.d
│ ├── cos.o
│ ├── cosh.crf
│ ├── cosh.d
│ ├── cosh.o
│ ├── data.crf
│ ├── data.d
│ ├── data.o
│ ├── dconsole.crf
│ ├── dconsole.d
│ ├── dconsole.o
│ ├── decomp.crf
│ ├── decomp.d
│ ├── decomp.o
│ ├── define.crf
│ ├── define.d
│ ├── define.o
│ ├── defint.crf
│ ├── defint.d
│ ├── defint.o
│ ├── degree.crf
│ ├── degree.d
│ ├── degree.o
│ ├── denominator.crf
│ ├── denominator.d
│ ├── denominator.o
│ ├── derivative.crf
│ ├── derivative.d
│ ├── derivative.o
│ ├── det.crf
│ ├── det.d
│ ├── det.o
│ ├── dirac.crf
│ ├── dirac.d
│ ├── dirac.o
│ ├── diskio.crf
│ ├── diskio.d
│ ├── diskio.o
│ ├── distill.crf
│ ├── distill.d
│ ├── distill.o
│ ├── divisors.crf
│ ├── divisors.d
│ ├── divisors.o
│ ├── dpow.crf
│ ├── dpow.d
│ ├── dpow.o
│ ├── dsolve.crf
│ ├── dsolve.d
│ ├── dsolve.o
│ ├── eigen.crf
│ ├── eigen.d
│ ├── eigen.o
│ ├── emain.crf
│ ├── emain.d
│ ├── emain.o
│ ├── emisc.crf
│ ├── emisc.d
│ ├── emisc.o
│ ├── erf.crf
│ ├── erf.d
│ ├── erf.o
│ ├── erfc.crf
│ ├── erfc.d
│ ├── erfc.o
│ ├── eval.crf
│ ├── eval.d
│ ├── eval.o
│ ├── expand.crf
│ ├── expand.d
│ ├── expand.o
│ ├── expcos.crf
│ ├── expcos.d
│ ├── expcos.o
│ ├── expsin.crf
│ ├── expsin.d
│ ├── expsin.o
│ ├── factor.crf
│ ├── factor.d
│ ├── factor.o
│ ├── factorial.crf
│ ├── factorial.d
│ ├── factorial.o
│ ├── factorpoly.crf
│ ├── factorpoly.d
│ ├── factorpoly.o
│ ├── factors.crf
│ ├── factors.d
│ ├── factors.o
│ ├── ff.crf
│ ├── ff.d
│ ├── ff.o
│ ├── filegui.d
│ ├── fileprovider.d
│ ├── filter.crf
│ ├── filter.d
│ ├── filter.o
│ ├── find.crf
│ ├── find.d
│ ├── find.o
│ ├── float.crf
│ ├── float.d
│ ├── float.o
│ ├── floor.crf
│ ├── floor.d
│ ├── floor.o
│ ├── for.crf
│ ├── for.d
│ ├── for.o
│ ├── g2048.crf
│ ├── g2048.d
│ ├── g2048.o
│ ├── gamma.crf
│ ├── gamma.d
│ ├── gamma.o
│ ├── gcd.crf
│ ├── gcd.d
│ ├── gcd.o
│ ├── graphicsprovider.d
│ ├── guess.crf
│ ├── guess.d
│ ├── guess.o
│ ├── hermite.crf
│ ├── hermite.d
│ ├── hermite.o
│ ├── hilbert.crf
│ ├── hilbert.d
│ ├── hilbert.o
│ ├── history.crf
│ ├── history.d
│ ├── history.o
│ ├── imag.crf
│ ├── imag.d
│ ├── imag.o
│ ├── index.crf
│ ├── index.d
│ ├── index.o
│ ├── init.crf
│ ├── init.d
│ ├── init.o
│ ├── inner.crf
│ ├── inner.d
│ ├── inner.o
│ ├── integral.crf
│ ├── integral.d
│ ├── integral.o
│ ├── inv.crf
│ ├── inv.d
│ ├── inv.o
│ ├── is.crf
│ ├── is.d
│ ├── is.o
│ ├── isprime.crf
│ ├── isprime.d
│ ├── isprime.o
│ ├── itab.crf
│ ├── itab.d
│ ├── itab.o
│ ├── itest.crf
│ ├── itest.d
│ ├── itest.o
│ ├── key.crf
│ ├── key.d
│ ├── key.o
│ ├── laguerre.crf
│ ├── laguerre.d
│ ├── laguerre.o
│ ├── laplace.crf
│ ├── laplace.d
│ ├── laplace.o
│ ├── lcm.crf
│ ├── lcm.d
│ ├── lcm.o
│ ├── leading.crf
│ ├── leading.d
│ ├── leading.o
│ ├── legendre.crf
│ ├── legendre.d
│ ├── legendre.o
│ ├── list.crf
│ ├── list.d
│ ├── list.o
│ ├── log.crf
│ ├── log.d
│ ├── log.o
│ ├── madd.crf
│ ├── madd.d
│ ├── madd.o
│ ├── mag.crf
│ ├── mag.d
│ ├── mag.o
│ ├── main.crf
│ ├── main.d
│ ├── main.o
│ ├── mcmp.crf
│ ├── mcmp.d
│ ├── mcmp.o
│ ├── menugui.d
│ ├── mfactor.crf
│ ├── mfactor.d
│ ├── mfactor.o
│ ├── mgcd.crf
│ ├── mgcd.d
│ ├── mgcd.o
│ ├── mini-test.crf
│ ├── mini-test.d
│ ├── mini-test.o
│ ├── misc.crf
│ ├── misc.d
│ ├── misc.o
│ ├── misce.crf
│ ├── misce.d
│ ├── misce.o
│ ├── mmodpow.crf
│ ├── mmodpow.d
│ ├── mmodpow.o
│ ├── mmul.crf
│ ├── mmul.d
│ ├── mmul.o
│ ├── mod.crf
│ ├── mod.d
│ ├── mod.o
│ ├── mpow.crf
│ ├── mpow.d
│ ├── mpow.o
│ ├── mprime.crf
│ ├── mprime.d
│ ├── mprime.o
│ ├── mroot.crf
│ ├── mroot.d
│ ├── mroot.o
│ ├── mscan.crf
│ ├── mscan.d
│ ├── mscan.o
│ ├── msqrt.crf
│ ├── msqrt.d
│ ├── msqrt.o
│ ├── mstr.crf
│ ├── mstr.d
│ ├── mstr.o
│ ├── multiply.crf
│ ├── multiply.d
│ ├── multiply.o
│ ├── nroots.crf
│ ├── nroots.d
│ ├── nroots.o
│ ├── numerator.crf
│ ├── numerator.d
│ ├── numerator.o
│ ├── outer.crf
│ ├── outer.d
│ ├── outer.o
│ ├── partition.crf
│ ├── partition.d
│ ├── partition.o
│ ├── pccon.crf
│ ├── pccon.d
│ ├── pccon.o
│ ├── polar.crf
│ ├── polar.d
│ ├── polar.o
│ ├── pollard.crf
│ ├── pollard.d
│ ├── pollard.o
│ ├── power.crf
│ ├── power.d
│ ├── power.o
│ ├── powerman.crf
│ ├── powerman.d
│ ├── powerman.o
│ ├── prime.crf
│ ├── prime.d
│ ├── prime.o
│ ├── primetab.crf
│ ├── primetab.d
│ ├── primetab.o
│ ├── print.crf
│ ├── print.d
│ ├── print.o
│ ├── product.crf
│ ├── product.d
│ ├── product.o
│ ├── qadd.crf
│ ├── qadd.d
│ ├── qadd.o
│ ├── qdiv.crf
│ ├── qdiv.d
│ ├── qdiv.o
│ ├── qmul.crf
│ ├── qmul.d
│ ├── qmul.o
│ ├── qpow.crf
│ ├── qpow.d
│ ├── qpow.o
│ ├── qsub.crf
│ ├── qsub.d
│ ├── qsub.o
│ ├── quickfactor.crf
│ ├── quickfactor.d
│ ├── quickfactor.o
│ ├── quotient.crf
│ ├── quotient.d
│ ├── quotient.o
│ ├── rationalize.crf
│ ├── rationalize.d
│ ├── rationalize.o
│ ├── real.crf
│ ├── real.d
│ ├── real.o
│ ├── rect.crf
│ ├── rect.d
│ ├── rect.o
│ ├── rewrite.crf
│ ├── rewrite.d
│ ├── rewrite.o
│ ├── roots.crf
│ ├── roots.d
│ ├── roots.o
│ ├── rtc.crf
│ ├── rtc.d
│ ├── rtc.o
│ ├── run.crf
│ ├── run.d
│ ├── run.o
│ ├── scan.crf
│ ├── scan.d
│ ├── scan.o
│ ├── sd_fs_app.crf
│ ├── sd_fs_app.d
│ ├── sd_fs_app.o
│ ├── sdcard.crf
│ ├── sdcard.d
│ ├── sdcard.o
│ ├── selftest.crf
│ ├── selftest.d
│ ├── selftest.o
│ ├── sgn.crf
│ ├── sgn.d
│ ├── sgn.o
│ ├── simfac.crf
│ ├── simfac.d
│ ├── simfac.o
│ ├── simplify.crf
│ ├── simplify.d
│ ├── simplify.o
│ ├── sin.crf
│ ├── sin.d
│ ├── sin.o
│ ├── sinh.crf
│ ├── sinh.d
│ ├── sinh.o
│ ├── spiflash.crf
│ ├── spiflash.d
│ ├── spiflash.o
│ ├── stack.crf
│ ├── stack.d
│ ├── stack.o
│ ├── startup_stm32f4xx.d
│ ├── startup_stm32f4xx.lst
│ ├── startup_stm32f4xx.o
│ ├── stm32f4xx_adc.crf
│ ├── stm32f4xx_adc.d
│ ├── stm32f4xx_adc.o
│ ├── stm32f4xx_can.crf
│ ├── stm32f4xx_can.d
│ ├── stm32f4xx_can.o
│ ├── stm32f4xx_crc.crf
│ ├── stm32f4xx_crc.d
│ ├── stm32f4xx_crc.o
│ ├── stm32f4xx_cryp.crf
│ ├── stm32f4xx_cryp.d
│ ├── stm32f4xx_cryp.o
│ ├── stm32f4xx_cryp_aes.crf
│ ├── stm32f4xx_cryp_aes.d
│ ├── stm32f4xx_cryp_aes.o
│ ├── stm32f4xx_cryp_des.crf
│ ├── stm32f4xx_cryp_des.d
│ ├── stm32f4xx_cryp_des.o
│ ├── stm32f4xx_cryp_tdes.crf
│ ├── stm32f4xx_cryp_tdes.d
│ ├── stm32f4xx_cryp_tdes.o
│ ├── stm32f4xx_dac.crf
│ ├── stm32f4xx_dac.d
│ ├── stm32f4xx_dac.o
│ ├── stm32f4xx_dbgmcu.crf
│ ├── stm32f4xx_dbgmcu.d
│ ├── stm32f4xx_dbgmcu.o
│ ├── stm32f4xx_dcmi.crf
│ ├── stm32f4xx_dcmi.d
│ ├── stm32f4xx_dcmi.o
│ ├── stm32f4xx_dma.crf
│ ├── stm32f4xx_dma.d
│ ├── stm32f4xx_dma.o
│ ├── stm32f4xx_exti.crf
│ ├── stm32f4xx_exti.d
│ ├── stm32f4xx_exti.o
│ ├── stm32f4xx_flash.crf
│ ├── stm32f4xx_flash.d
│ ├── stm32f4xx_flash.o
│ ├── stm32f4xx_fsmc.crf
│ ├── stm32f4xx_fsmc.d
│ ├── stm32f4xx_fsmc.o
│ ├── stm32f4xx_gpio.crf
│ ├── stm32f4xx_gpio.d
│ ├── stm32f4xx_gpio.o
│ ├── stm32f4xx_hash.crf
│ ├── stm32f4xx_hash.d
│ ├── stm32f4xx_hash.o
│ ├── stm32f4xx_hash_md5.crf
│ ├── stm32f4xx_hash_md5.d
│ ├── stm32f4xx_hash_md5.o
│ ├── stm32f4xx_hash_sha1.crf
│ ├── stm32f4xx_hash_sha1.d
│ ├── stm32f4xx_hash_sha1.o
│ ├── stm32f4xx_i2c.crf
│ ├── stm32f4xx_i2c.d
│ ├── stm32f4xx_i2c.o
│ ├── stm32f4xx_it.crf
│ ├── stm32f4xx_it.d
│ ├── stm32f4xx_it.o
│ ├── stm32f4xx_iwdg.crf
│ ├── stm32f4xx_iwdg.d
│ ├── stm32f4xx_iwdg.o
│ ├── stm32f4xx_pwr.crf
│ ├── stm32f4xx_pwr.d
│ ├── stm32f4xx_pwr.o
│ ├── stm32f4xx_rcc.crf
│ ├── stm32f4xx_rcc.d
│ ├── stm32f4xx_rcc.o
│ ├── stm32f4xx_rng.crf
│ ├── stm32f4xx_rng.d
│ ├── stm32f4xx_rng.o
│ ├── stm32f4xx_rtc.crf
│ ├── stm32f4xx_rtc.d
│ ├── stm32f4xx_rtc.o
│ ├── stm32f4xx_sdio.crf
│ ├── stm32f4xx_sdio.d
│ ├── stm32f4xx_sdio.o
│ ├── stm32f4xx_spi.crf
│ ├── stm32f4xx_spi.d
│ ├── stm32f4xx_spi.o
│ ├── stm32f4xx_syscfg.crf
│ ├── stm32f4xx_syscfg.d
│ ├── stm32f4xx_syscfg.o
│ ├── stm32f4xx_tim.crf
│ ├── stm32f4xx_tim.d
│ ├── stm32f4xx_tim.o
│ ├── stm32f4xx_usart.crf
│ ├── stm32f4xx_usart.d
│ ├── stm32f4xx_usart.o
│ ├── stm32f4xx_wwdg.crf
│ ├── stm32f4xx_wwdg.d
│ ├── stm32f4xx_wwdg.o
│ ├── stn.crf
│ ├── stn.d
│ ├── stn.o
│ ├── subst.crf
│ ├── subst.d
│ ├── subst.o
│ ├── sum.crf
│ ├── sum.d
│ ├── sum.o
│ ├── symbol.crf
│ ├── symbol.d
│ ├── symbol.o
│ ├── system_stm32f4xx.crf
│ ├── system_stm32f4xx.d
│ ├── system_stm32f4xx.o
│ ├── tan.crf
│ ├── tan.d
│ ├── tan.o
│ ├── tanh.crf
│ ├── tanh.d
│ ├── tanh.o
│ ├── taylor.crf
│ ├── taylor.d
│ ├── taylor.o
│ ├── tensor.crf
│ ├── tensor.d
│ ├── tensor.o
│ ├── test.crf
│ ├── test.d
│ ├── test.o
│ ├── transform.crf
│ ├── transform.d
│ ├── transform.o
│ ├── transpose.crf
│ ├── transpose.d
│ ├── transpose.o
│ ├── usart.crf
│ ├── usart.d
│ ├── usart.o
│ ├── userfunc.crf
│ ├── userfunc.d
│ ├── userfunc.o
│ ├── variables.crf
│ ├── variables.d
│ ├── variables.o
│ ├── vectorize.crf
│ ├── vectorize.d
│ ├── vectorize.o
│ ├── versionprovider.crf
│ ├── versionprovider.d
│ ├── versionprovider.o
│ ├── zero.crf
│ ├── zero.d
│ └── zero.o
│ ├── Startup
│ ├── MDK-ARM
│ │ ├── startup_stm32f2xx.s
│ │ └── startup_stm32f4xx.s
│ ├── startup_stm32f2xx.s
│ └── startup_stm32f4xx.s
│ ├── StdPeriph_Driver
│ ├── inc
│ │ ├── misc.h
│ │ ├── stm32f2xx_adc.h
│ │ ├── stm32f2xx_can.h
│ │ ├── stm32f2xx_crc.h
│ │ ├── stm32f2xx_cryp.h
│ │ ├── stm32f2xx_dac.h
│ │ ├── stm32f2xx_dbgmcu.h
│ │ ├── stm32f2xx_dcmi.h
│ │ ├── stm32f2xx_dma.h
│ │ ├── stm32f2xx_exti.h
│ │ ├── stm32f2xx_flash.h
│ │ ├── stm32f2xx_fsmc.h
│ │ ├── stm32f2xx_gpio.h
│ │ ├── stm32f2xx_hash.h
│ │ ├── stm32f2xx_i2c.h
│ │ ├── stm32f2xx_iwdg.h
│ │ ├── stm32f2xx_pwr.h
│ │ ├── stm32f2xx_rcc.h
│ │ ├── stm32f2xx_rng.h
│ │ ├── stm32f2xx_rtc.h
│ │ ├── stm32f2xx_sdio.h
│ │ ├── stm32f2xx_spi.h
│ │ ├── stm32f2xx_syscfg.h
│ │ ├── stm32f2xx_tim.h
│ │ ├── stm32f2xx_usart.h
│ │ ├── stm32f2xx_wwdg.h
│ │ ├── stm32f4xx_adc.h
│ │ ├── stm32f4xx_can.h
│ │ ├── stm32f4xx_crc.h
│ │ ├── stm32f4xx_cryp.h
│ │ ├── stm32f4xx_dac.h
│ │ ├── stm32f4xx_dbgmcu.h
│ │ ├── stm32f4xx_dcmi.h
│ │ ├── stm32f4xx_dma.h
│ │ ├── stm32f4xx_exti.h
│ │ ├── stm32f4xx_flash.h
│ │ ├── stm32f4xx_fsmc.h
│ │ ├── stm32f4xx_gpio.h
│ │ ├── stm32f4xx_hash.h
│ │ ├── stm32f4xx_i2c.h
│ │ ├── stm32f4xx_iwdg.h
│ │ ├── stm32f4xx_pwr.h
│ │ ├── stm32f4xx_rcc.h
│ │ ├── stm32f4xx_rng.h
│ │ ├── stm32f4xx_rtc.h
│ │ ├── stm32f4xx_sdio.h
│ │ ├── stm32f4xx_spi.h
│ │ ├── stm32f4xx_syscfg.h
│ │ ├── stm32f4xx_tim.h
│ │ ├── stm32f4xx_usart.h
│ │ └── stm32f4xx_wwdg.h
│ └── src
│ │ ├── misc.c
│ │ ├── stm32f2xx_adc.c
│ │ ├── stm32f2xx_can.c
│ │ ├── stm32f2xx_crc.c
│ │ ├── stm32f2xx_cryp.c
│ │ ├── stm32f2xx_cryp_aes.c
│ │ ├── stm32f2xx_cryp_des.c
│ │ ├── stm32f2xx_cryp_tdes.c
│ │ ├── stm32f2xx_dac.c
│ │ ├── stm32f2xx_dbgmcu.c
│ │ ├── stm32f2xx_dcmi.c
│ │ ├── stm32f2xx_dma.c
│ │ ├── stm32f2xx_exti.c
│ │ ├── stm32f2xx_flash.c
│ │ ├── stm32f2xx_fsmc.c
│ │ ├── stm32f2xx_gpio.c
│ │ ├── stm32f2xx_hash.c
│ │ ├── stm32f2xx_hash_md5.c
│ │ ├── stm32f2xx_hash_sha1.c
│ │ ├── stm32f2xx_i2c.c
│ │ ├── stm32f2xx_iwdg.c
│ │ ├── stm32f2xx_pwr.c
│ │ ├── stm32f2xx_rcc.c
│ │ ├── stm32f2xx_rng.c
│ │ ├── stm32f2xx_rtc.c
│ │ ├── stm32f2xx_sdio.c
│ │ ├── stm32f2xx_spi.c
│ │ ├── stm32f2xx_syscfg.c
│ │ ├── stm32f2xx_tim.c
│ │ ├── stm32f2xx_usart.c
│ │ ├── stm32f2xx_wwdg.c
│ │ ├── stm32f4xx_adc.c
│ │ ├── stm32f4xx_can.c
│ │ ├── stm32f4xx_crc.c
│ │ ├── stm32f4xx_cryp.c
│ │ ├── stm32f4xx_cryp_aes.c
│ │ ├── stm32f4xx_cryp_des.c
│ │ ├── stm32f4xx_cryp_tdes.c
│ │ ├── stm32f4xx_dac.c
│ │ ├── stm32f4xx_dbgmcu.c
│ │ ├── stm32f4xx_dcmi.c
│ │ ├── stm32f4xx_dma.c
│ │ ├── stm32f4xx_exti.c
│ │ ├── stm32f4xx_flash.c
│ │ ├── stm32f4xx_fsmc.c
│ │ ├── stm32f4xx_gpio.c
│ │ ├── stm32f4xx_hash.c
│ │ ├── stm32f4xx_hash_md5.c
│ │ ├── stm32f4xx_hash_sha1.c
│ │ ├── stm32f4xx_i2c.c
│ │ ├── stm32f4xx_iwdg.c
│ │ ├── stm32f4xx_pwr.c
│ │ ├── stm32f4xx_rcc.c
│ │ ├── stm32f4xx_rng.c
│ │ ├── stm32f4xx_rtc.c
│ │ ├── stm32f4xx_sdio.c
│ │ ├── stm32f4xx_spi.c
│ │ ├── stm32f4xx_syscfg.c
│ │ ├── stm32f4xx_tim.c
│ │ ├── stm32f4xx_usart.c
│ │ └── stm32f4xx_wwdg.c
│ ├── System
│ ├── font.c
│ ├── font.h
│ ├── fvm.c
│ ├── fvm.h
│ ├── ssm.c
│ ├── ssm.h
│ ├── ui.c
│ └── ui.h
│ ├── main.c
│ ├── main.h
│ ├── stm32f4xx_conf.h
│ ├── stm32f4xx_it.c
│ ├── stm32f4xx_it.h
│ └── sysbase.h
└── readme.md
/.gitattributes:
--------------------------------------------------------------------------------
1 | # Auto detect text files and perform LF normalization
2 | * text=auto
3 |
4 | # Custom for Visual Studio
5 | *.cs diff=csharp
6 | *.sln merge=union
7 | *.csproj merge=union
8 | *.vbproj merge=union
9 | *.fsproj merge=union
10 | *.dbproj merge=union
11 |
12 | # Standard to msysgit
13 | *.doc diff=astextplain
14 | *.DOC diff=astextplain
15 | *.docx diff=astextplain
16 | *.DOCX diff=astextplain
17 | *.dot diff=astextplain
18 | *.DOT diff=astextplain
19 | *.pdf diff=astextplain
20 | *.PDF diff=astextplain
21 | *.rtf diff=astextplain
22 | *.RTF diff=astextplain
23 |
--------------------------------------------------------------------------------
/Hardware/AMEv3/AMEv3.PrjPCBStructure:
--------------------------------------------------------------------------------
1 | Record=TopLevelDocument|FileName=SheetMain.SchDoc
2 |
--------------------------------------------------------------------------------
/Hardware/AMEv3/PCB1-B-EVT2.PcbDoc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Hardware/AMEv3/PCB1-B-EVT2.PcbDoc
--------------------------------------------------------------------------------
/Hardware/AMEv3/PCB1-B.PcbDoc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Hardware/AMEv3/PCB1-B.PcbDoc
--------------------------------------------------------------------------------
/Hardware/AMEv3/PCB1-C.PcbDoc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Hardware/AMEv3/PCB1-C.PcbDoc
--------------------------------------------------------------------------------
/Hardware/AMEv3/PCB1.PcbDoc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Hardware/AMEv3/PCB1.PcbDoc
--------------------------------------------------------------------------------
/Hardware/AMEv3/PcbLib1.PcbLib:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Hardware/AMEv3/PcbLib1.PcbLib
--------------------------------------------------------------------------------
/Hardware/AMEv3/Project Outputs for AMEv3/AMEv3.xls:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Hardware/AMEv3/Project Outputs for AMEv3/AMEv3.xls
--------------------------------------------------------------------------------
/Hardware/AMEv3/Project Outputs for AMEv3/Status Report.Txt:
--------------------------------------------------------------------------------
1 | Output: Bill of Materials
2 | Type : BOM
3 | From : Variant [[No Variations]] of Project [AMEv3.PrjPCB]
4 |
5 |
6 | Files Generated : 0
7 | Documents Printed : 0
8 |
9 | Finished Output Generation At 10:48:47 On 2014/1/31
10 |
--------------------------------------------------------------------------------
/Hardware/AMEv3/README.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Hardware/AMEv3/README.txt
--------------------------------------------------------------------------------
/Hardware/AMEv3/Schlib1.SchLib:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Hardware/AMEv3/Schlib1.SchLib
--------------------------------------------------------------------------------
/Hardware/AMEv3/SheetMain.SchDoc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Hardware/AMEv3/SheetMain.SchDoc
--------------------------------------------------------------------------------
/Hardware/ArithMaxE-V3P1/AMEv3.Dat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Hardware/ArithMaxE-V3P1/AMEv3.Dat
--------------------------------------------------------------------------------
/Hardware/ArithMaxE-V3P1/AMEv3.PrjPCBStructure:
--------------------------------------------------------------------------------
1 | Record=TopLevelDocument|FileName=SheetMain.SchDoc
2 |
--------------------------------------------------------------------------------
/Hardware/ArithMaxE-V3P1/AMEv3.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Hardware/ArithMaxE-V3P1/AMEv3.pdf
--------------------------------------------------------------------------------
/Hardware/ArithMaxE-V3P1/Design Rule Check - PCB1-B-EVT2.drc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Hardware/ArithMaxE-V3P1/Design Rule Check - PCB1-B-EVT2.drc
--------------------------------------------------------------------------------
/Hardware/ArithMaxE-V3P1/Design Rule Check - PCB1-B-EVT2.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Hardware/ArithMaxE-V3P1/Design Rule Check - PCB1-B-EVT2.html
--------------------------------------------------------------------------------
/Hardware/ArithMaxE-V3P1/Output/AMEv3P BOM.xlsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Hardware/ArithMaxE-V3P1/Output/AMEv3P BOM.xlsx
--------------------------------------------------------------------------------
/Hardware/ArithMaxE-V3P1/Output/Status Report.Txt:
--------------------------------------------------------------------------------
1 | Output: Bill of Materials
2 | Type : BOM
3 | From : Variant [[No Variations]] of Project [AMEv3.PrjPCB]
4 |
5 |
6 | Files Generated : 0
7 | Documents Printed : 0
8 |
9 | Finished Output Generation At 9:57:59 On 2015/8/17
10 |
--------------------------------------------------------------------------------
/Hardware/ArithMaxE-V3P1/PCB1-B-EVT2.PcbDoc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Hardware/ArithMaxE-V3P1/PCB1-B-EVT2.PcbDoc
--------------------------------------------------------------------------------
/Hardware/ArithMaxE-V3P1/PcbLib1.PcbLib:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Hardware/ArithMaxE-V3P1/PcbLib1.PcbLib
--------------------------------------------------------------------------------
/Hardware/ArithMaxE-V3P1/Project Outputs for AMEv3/Status Report.Txt:
--------------------------------------------------------------------------------
1 | Output: Bill of Materials
2 | Type : BOM
3 | From : Variant [[No Variations]] of Project [AMEv3.PrjPCB]
4 |
5 |
6 | Files Generated : 0
7 | Documents Printed : 0
8 |
9 | Finished Output Generation At 10:48:47 On 2014/1/31
10 |
--------------------------------------------------------------------------------
/Hardware/ArithMaxE-V3P1/Schlib1.SchLib:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Hardware/ArithMaxE-V3P1/Schlib1.SchLib
--------------------------------------------------------------------------------
/Hardware/ArithMaxE-V3P1/SheetMain.SchDoc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Hardware/ArithMaxE-V3P1/SheetMain.SchDoc
--------------------------------------------------------------------------------
/Software/AMEv3/CMSIS/stm32f2xx.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3/CMSIS/stm32f2xx.h
--------------------------------------------------------------------------------
/Software/AMEv3/CMSIS/stm32f4xx.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3/CMSIS/stm32f4xx.h
--------------------------------------------------------------------------------
/Software/AMEv3/EWARM/Exe/Project.bin:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3/EWARM/Exe/Project.bin
--------------------------------------------------------------------------------
/Software/AMEv3/EWARM/Exe/Project.out:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3/EWARM/Exe/Project.out
--------------------------------------------------------------------------------
/Software/AMEv3/EWARM/Exe/Project.sim:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3/EWARM/Exe/Project.sim
--------------------------------------------------------------------------------
/Software/AMEv3/EWARM/Project.eww:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | $WS_DIR$\Project.ewp
6 |
7 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/Software/AMEv3/EWARM/ProjectCustomSfr.sfr:
--------------------------------------------------------------------------------
1 | [Sfr]
2 |
3 |
4 | [SfrGroupInfo]
--------------------------------------------------------------------------------
/Software/AMEv3/Eigenmath/aboutGUI.cpp:
--------------------------------------------------------------------------------
1 | #include "aboutGUI.hpp"
2 | //#include "graphicsProvider.hpp"
3 | #include "versionProvider.hpp"
4 |
5 | void showAbout() {
6 | int key;
7 | LCD_Clear(0);
8 | //y increment between each line: 17; between paragraphs: 20
9 | LCD_String_6X8(0, 0, (unsigned char*)"Designed by Zweb",1);
10 | LCD_Update();
11 | Delay(100);
12 | LCD_String_6X8(0, 8, (unsigned char*)"Press any key",1);
13 | LCD_Update();
14 | GetKey();
15 | }
16 |
--------------------------------------------------------------------------------
/Software/AMEv3/Eigenmath/aboutGUI.hpp:
--------------------------------------------------------------------------------
1 | #ifndef __ABOUTGUI_H
2 | #define __ABOUTGUI_H
3 |
4 | #include "sysbase.h"
5 | #include
6 | #include
7 | #include
8 | #include
9 |
10 | void showAbout();
11 |
12 | #endif
--------------------------------------------------------------------------------
/Software/AMEv3/Eigenmath/append.cpp:
--------------------------------------------------------------------------------
1 | // Append one list to another.
2 |
3 | #include "stdafx.h"
4 | #include "defs.h"
5 |
6 | void
7 | append(void)
8 | {
9 | int h;
10 |
11 | save();
12 |
13 | p2 = pop();
14 | p1 = pop();
15 |
16 | h = tos;
17 |
18 | while (iscons(p1)) {
19 | push(car(p1));
20 | p1 = cdr(p1);
21 | }
22 |
23 | while (iscons(p2)) {
24 | push(car(p2));
25 | p2 = cdr(p2);
26 | }
27 |
28 | list(tos - h);
29 |
30 | restore();
31 | }
32 |
--------------------------------------------------------------------------------
/Software/AMEv3/Eigenmath/clear.cpp:
--------------------------------------------------------------------------------
1 | #include "stdafx.h"
2 | #include "defs.h"
3 |
4 | void
5 | eval_clear(void)
6 | {
7 | if (test_flag == 0)
8 | clear_term();
9 | clear_symbols();
10 | defn();
11 | push(symbol(NIL));
12 | }
13 |
14 | // clear from application GUI code
15 |
16 | void
17 | clear(void)
18 | {
19 | run("clear");
20 | }
21 |
--------------------------------------------------------------------------------
/Software/AMEv3/Eigenmath/conj.cpp:
--------------------------------------------------------------------------------
1 | // Complex conjugate
2 |
3 | #include "stdafx.h"
4 | #include "defs.h"
5 |
6 | void
7 | eval_conj(void)
8 | {
9 | push(cadr(p1));
10 | eval();
11 | p1 = pop();
12 | push(p1);
13 | if (!find(p1, imaginaryunit)) { // example: (-1)^(1/3)
14 | polar();
15 | conjugate();
16 | clockform();
17 | } else
18 | conjugate();
19 | }
20 |
21 |
22 | void
23 | conjugate(void)
24 | {
25 | push(imaginaryunit);
26 | push(imaginaryunit);
27 | negate();
28 | subst();
29 | eval();
30 | }
31 |
--------------------------------------------------------------------------------
/Software/AMEv3/Eigenmath/cons.cpp:
--------------------------------------------------------------------------------
1 | // Cons two things on the stack.
2 |
3 | #include "stdafx.h"
4 | #include "defs.h"
5 |
6 | void
7 | cons(void)
8 | {
9 | // auto var ok, no opportunity for garbage collection after p = alloc()
10 | U *p;
11 | p = alloc();
12 | p->k = CONS;
13 | p->u.cons.cdr = pop();
14 | p->u.cons.car = pop();
15 | push(p);
16 | }
17 |
--------------------------------------------------------------------------------
/Software/AMEv3/Eigenmath/data.cpp:
--------------------------------------------------------------------------------
1 | #include "stdafx.h"
2 | #include "defs.h"
3 |
4 | int endian = 1;
5 |
6 | U *p0, *p1, *p2, *p3, *p4, *p5, *p6, *p7, *p8, *p9;
7 |
8 | U *zero, *one, *imaginaryunit;
9 |
10 | U symtab[NSYM], *binding[NSYM], *arglist[NSYM];
11 |
12 | int expanding;
13 | int verbosing;
14 | int esc_flag;
15 | int test_flag;
16 | int draw_flag;
17 | int trigmode;
18 | char logbuf[500];
19 |
--------------------------------------------------------------------------------
/Software/AMEv3/Eigenmath/fileGUI.hpp:
--------------------------------------------------------------------------------
1 | #ifndef __FILEGUI_H
2 | #define __FILEGUI_H
3 | #include "sysbase.h"
4 | #include
5 | #include
6 | #include
7 | #include
8 |
9 | #include "fileProvider.hpp"
10 |
11 | int fileBrowser(char* filename, unsigned char* filter, char* title);
12 | int fileBrowserSub(char* browserbasepath, char* filename, unsigned char* filter, char* title);
13 |
14 | #endif
--------------------------------------------------------------------------------
/Software/AMEv3/Eigenmath/find.cpp:
--------------------------------------------------------------------------------
1 | // returns 1 if expr p contains expr q, otherweise returns 0
2 |
3 | #include "stdafx.h"
4 | #include "defs.h"
5 |
6 | int
7 | find(U *p, U *q)
8 | {
9 | int i;
10 |
11 | if (equal(p, q))
12 | return 1;
13 |
14 | if (istensor(p)) {
15 | for (i = 0; i < p->u.tensor->nelem; i++)
16 | if (find(p->u.tensor->elem[i], q))
17 | return 1;
18 | return 0;
19 | }
20 |
21 | while (iscons(p)) {
22 | if (find(car(p), q))
23 | return 1;
24 | p = cdr(p);
25 | }
26 |
27 | return 0;
28 | }
29 |
--------------------------------------------------------------------------------
/Software/AMEv3/Eigenmath/list.cpp:
--------------------------------------------------------------------------------
1 | // Create a list from n things on the stack.
2 |
3 | #include "stdafx.h"
4 | #include "defs.h"
5 |
6 | void
7 | list(int n)
8 | {
9 | int i;
10 | push(symbol(NIL));
11 | for (i = 0; i < n; i++)
12 | cons();
13 | }
14 |
--------------------------------------------------------------------------------
/Software/AMEv3/Eigenmath/stdafx.h:
--------------------------------------------------------------------------------
1 | // Required by VC++.
2 |
--------------------------------------------------------------------------------
/Software/AMEv3/Eigenmath/versionProvider.cpp:
--------------------------------------------------------------------------------
1 | #include
2 | #include
3 | #include
4 | #include "versionProvider.hpp"
5 | void getVersion(char* buffer) {
6 | strcpy(buffer, "XX");
7 | }
8 | void getTimestamp(char* buffer) {
9 | strcpy(buffer, "2013-10-26");
10 | }
--------------------------------------------------------------------------------
/Software/AMEv3/Eigenmath/versionProvider.hpp:
--------------------------------------------------------------------------------
1 | #ifndef __VERSIONPROVIDER_H
2 | #define __VERSIONPROVIDER_H
3 |
4 | # ifdef __cplusplus
5 | extern "C" {
6 | # endif
7 | void getVersion(char* buffer);
8 | void getTimestamp(char* buffer);
9 | # ifdef __cplusplus
10 | }
11 | # endif
12 |
13 | #endif
--------------------------------------------------------------------------------
/Software/AMEv3/StdPeriph_Driver/src/stm32f4xx_flash.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3/StdPeriph_Driver/src/stm32f4xx_flash.c
--------------------------------------------------------------------------------
/Software/AMEv3/StdPeriph_Driver/src/stm32f4xx_rcc.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3/StdPeriph_Driver/src/stm32f4xx_rcc.c
--------------------------------------------------------------------------------
/Software/AMEv3/dac.h:
--------------------------------------------------------------------------------
1 | #ifndef __DAC_H__
2 | #define __DAC_H__
3 |
4 | #include "main.h"
5 |
6 | void DAC1_Config();
7 |
8 | #endif
9 |
--------------------------------------------------------------------------------
/Software/AMEv3/g2048.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3/g2048.c
--------------------------------------------------------------------------------
/Software/AMEv3/g2048.h:
--------------------------------------------------------------------------------
1 | #ifndef __G2048_H__
2 | #define __G2048_H__
3 |
4 | #include "main.h"
5 |
6 | int G2048_main(void);
7 |
8 | #endif
--------------------------------------------------------------------------------
/Software/AMEv3/gpio.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3/gpio.c
--------------------------------------------------------------------------------
/Software/AMEv3/image.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3/image.h
--------------------------------------------------------------------------------
/Software/AMEv3/key.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3/key.c
--------------------------------------------------------------------------------
/Software/AMEv3/lcd.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3/lcd.c
--------------------------------------------------------------------------------
/Software/AMEv3/lcd.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3/lcd.h
--------------------------------------------------------------------------------
/Software/AMEv3/main.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3/main.c
--------------------------------------------------------------------------------
/Software/AMEv3/pccon.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3/pccon.c
--------------------------------------------------------------------------------
/Software/AMEv3/pccon.h:
--------------------------------------------------------------------------------
1 | #ifndef __PCCON_H__
2 | #define __PCCON_H__
3 |
4 | #include "main.h"
5 |
6 | void PCCon_Start();
7 |
8 | #endif
--------------------------------------------------------------------------------
/Software/AMEv3/powerman.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3/powerman.c
--------------------------------------------------------------------------------
/Software/AMEv3/powerman.h:
--------------------------------------------------------------------------------
1 | #ifndef __POWERMAN_H__
2 | #define __POWERMAN_H__
3 |
4 | #include "main.h"
5 |
6 | void PM_Config();
7 | void PM_EnterStopMode();
8 | void PM_EnterStandbyMode();
9 | void PM_SetCPUFreq(uint8_t freq);
10 | uint32_t PM_GetVolt();
11 | #define PM_LDO_On() GPIOC->BSRRL = GPIO_Pin_2
12 | #define PM_LDO_Off() GPIOC->BSRRH = GPIO_Pin_2
13 |
14 | #endif
15 |
--------------------------------------------------------------------------------
/Software/AMEv3/rtc.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3/rtc.c
--------------------------------------------------------------------------------
/Software/AMEv3/rtc.h:
--------------------------------------------------------------------------------
1 | #ifndef __RTC_H__
2 | #define __RTC_H__
3 |
4 | #include "main.h"
5 |
6 | void RTC_Config(void);
7 |
8 | #endif
--------------------------------------------------------------------------------
/Software/AMEv3/sdcard.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3/sdcard.c
--------------------------------------------------------------------------------
/Software/AMEv3/snake.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3/snake.c
--------------------------------------------------------------------------------
/Software/AMEv3/spi.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3/spi.c
--------------------------------------------------------------------------------
/Software/AMEv3/spi.h:
--------------------------------------------------------------------------------
1 | #ifndef __SPI_H__
2 | #define __SPI_H__
3 |
4 | #include "main.h"
5 |
6 | void SPI1_Config(void);
7 | uint8_t SPI1_Recv(void);
8 | void SPI1_ITConfig(void);
9 |
10 | #endif
--------------------------------------------------------------------------------
/Software/AMEv3/spiflash.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3/spiflash.c
--------------------------------------------------------------------------------
/Software/AMEv3/spiflash.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3/spiflash.h
--------------------------------------------------------------------------------
/Software/AMEv3/stm32f4xx_it.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3/stm32f4xx_it.c
--------------------------------------------------------------------------------
/Software/AMEv3/stn.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3/stn.c
--------------------------------------------------------------------------------
/Software/AMEv3/stn.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3/stn.h
--------------------------------------------------------------------------------
/Software/AMEv3/sysbase.h:
--------------------------------------------------------------------------------
1 | #ifndef __SYSBASE_H__
2 | #define __SYSBASE_H__
3 | extern "C" {
4 | #include "main.h"
5 | #include "stn.h"
6 | #include "key.h"
7 | #include "spiflash.h"
8 | #include "usart.h"
9 | #include "powerman.h"
10 | #include "g2048.h"
11 | }
12 | #endif
--------------------------------------------------------------------------------
/Software/AMEv3/usart.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3/usart.c
--------------------------------------------------------------------------------
/Software/AMEv3/usart.h:
--------------------------------------------------------------------------------
1 | #ifndef __USART_H__
2 | #define __USART_H__
3 |
4 | #include "main.h"
5 |
6 | #ifdef __GNUC__
7 | /* With GCC/RAISONANCE, small printf (option LD Linker->Libraries->Small printf
8 | set to 'Yes') calls __io_putchar() */
9 | #define PUTCHAR_PROTOTYPE int __io_putchar(int ch)
10 | #else
11 | #define PUTCHAR_PROTOTYPE int fputc(int ch, FILE *f)
12 | #endif /* __GNUC__ */
13 |
14 | void USART1_Config();
15 | uint8_t USART1_GetCh(void);
16 |
17 | #endif
18 |
--------------------------------------------------------------------------------
/Software/AMEv3P/CMSIS/stm32f2xx.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/CMSIS/stm32f2xx.h
--------------------------------------------------------------------------------
/Software/AMEv3P/CMSIS/stm32f4xx.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/CMSIS/stm32f4xx.h
--------------------------------------------------------------------------------
/Software/AMEv3P/Drivers/kbd.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/Drivers/kbd.c
--------------------------------------------------------------------------------
/Software/AMEv3P/Drivers/lcd.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/Drivers/lcd.c
--------------------------------------------------------------------------------
/Software/AMEv3P/Drivers/pm.h:
--------------------------------------------------------------------------------
1 | /*******************************************************************************
2 | ArithMax Open Source Calculator Project
3 | www.zephray.com
4 | *******************************************************************************/
5 | #ifndef __PM_H__
6 | #define __PM_H__
7 |
8 | #include "main.h"
9 |
10 | void PM_Init(void);
11 | void PM_EnterStopMode(void);
12 | void PM_EnterStandbyMode(void);
13 | void PM_SetCPUFreq(uint8_t freq);
14 | uint32_t PM_GetVolt();
15 |
16 | #endif
17 |
--------------------------------------------------------------------------------
/Software/AMEv3P/Drivers/timing.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/Drivers/timing.c
--------------------------------------------------------------------------------
/Software/AMEv3P/Drivers/timing.h:
--------------------------------------------------------------------------------
1 | /*******************************************************************************
2 | ArithMax Open Source Calculator Project
3 | www.zephray.com
4 | *******************************************************************************/
5 | #ifndef __TIMING_H__
6 | #define __TIMING_H__
7 |
8 | #include "main.h"
9 |
10 | void TIME_Init();
11 | void Delay(__IO uint32_t nTime);
12 | void TimingDelay_Decrement(void);
13 | void DelayUs(uint32_t us);
14 |
15 | #endif
--------------------------------------------------------------------------------
/Software/AMEv3P/Drivers/wdg.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/Drivers/wdg.c
--------------------------------------------------------------------------------
/Software/AMEv3P/Drivers/wdg.h:
--------------------------------------------------------------------------------
1 | /*******************************************************************************
2 | ArithMax Open Source Calculator Project
3 | www.zephray.com
4 | *******************************************************************************/
5 | #ifndef __WDG_H__
6 | #define __WDG_H__
7 |
8 | void WDG_Init(void);
9 |
10 | #endif
--------------------------------------------------------------------------------
/Software/AMEv3P/EWARM/Exe/Project.bin:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/EWARM/Exe/Project.bin
--------------------------------------------------------------------------------
/Software/AMEv3P/EWARM/Exe/Project.out:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/EWARM/Exe/Project.out
--------------------------------------------------------------------------------
/Software/AMEv3P/EWARM/Exe/Project.sim:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/EWARM/Exe/Project.sim
--------------------------------------------------------------------------------
/Software/AMEv3P/EWARM/Project.eww:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | $WS_DIR$\Project.ewp
6 |
7 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/Software/AMEv3P/EWARM/settings/Project.crun:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 1
5 |
6 |
7 | *
8 | *
9 | *
10 | 0
11 | 1
12 |
13 |
14 |
15 |
16 |
17 |
--------------------------------------------------------------------------------
/Software/AMEv3P/EWARM/settings/Project.wspos:
--------------------------------------------------------------------------------
1 | [MainWindow]
2 | WindowPlacement=_ 349 81 1374 884 1
3 |
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/Project.plg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/Project.plg
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/aboutgui.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/aboutgui.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/aboutgui.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/aboutgui.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/abs.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/abs.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/abs.d:
--------------------------------------------------------------------------------
1 | .\abs.o: ..\Eigenmath\abs.cpp
2 | .\abs.o: ..\Eigenmath\stdafx.h
3 | .\abs.o: ..\Eigenmath\defs.h
4 | .\abs.o: C:\Keil\ARM\ARMCC\bin\..\include\stdio.h
5 | .\abs.o: C:\Keil\ARM\ARMCC\bin\..\include\stdlib.h
6 | .\abs.o: C:\Keil\ARM\ARMCC\bin\..\include\ctype.h
7 | .\abs.o: C:\Keil\ARM\ARMCC\bin\..\include\string.h
8 | .\abs.o: C:\Keil\ARM\ARMCC\bin\..\include\setjmp.h
9 | .\abs.o: C:\Keil\ARM\ARMCC\bin\..\include\math.h
10 | .\abs.o: C:\Keil\ARM\ARMCC\bin\..\include\errno.h
11 | .\abs.o: ..\Eigenmath\prototypes.h
12 |
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/abs.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/abs.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/add.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/add.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/add.d:
--------------------------------------------------------------------------------
1 | .\add.o: ..\Eigenmath\add.cpp
2 | .\add.o: ..\Eigenmath\stdafx.h
3 | .\add.o: ..\Eigenmath\defs.h
4 | .\add.o: C:\Keil\ARM\ARMCC\bin\..\include\stdio.h
5 | .\add.o: C:\Keil\ARM\ARMCC\bin\..\include\stdlib.h
6 | .\add.o: C:\Keil\ARM\ARMCC\bin\..\include\ctype.h
7 | .\add.o: C:\Keil\ARM\ARMCC\bin\..\include\string.h
8 | .\add.o: C:\Keil\ARM\ARMCC\bin\..\include\setjmp.h
9 | .\add.o: C:\Keil\ARM\ARMCC\bin\..\include\math.h
10 | .\add.o: C:\Keil\ARM\ARMCC\bin\..\include\errno.h
11 | .\add.o: ..\Eigenmath\prototypes.h
12 |
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/add.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/add.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/adj.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/adj.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/adj.d:
--------------------------------------------------------------------------------
1 | .\adj.o: ..\Eigenmath\adj.cpp
2 | .\adj.o: ..\Eigenmath\stdafx.h
3 | .\adj.o: ..\Eigenmath\defs.h
4 | .\adj.o: C:\Keil\ARM\ARMCC\bin\..\include\stdio.h
5 | .\adj.o: C:\Keil\ARM\ARMCC\bin\..\include\stdlib.h
6 | .\adj.o: C:\Keil\ARM\ARMCC\bin\..\include\ctype.h
7 | .\adj.o: C:\Keil\ARM\ARMCC\bin\..\include\string.h
8 | .\adj.o: C:\Keil\ARM\ARMCC\bin\..\include\setjmp.h
9 | .\adj.o: C:\Keil\ARM\ARMCC\bin\..\include\math.h
10 | .\adj.o: C:\Keil\ARM\ARMCC\bin\..\include\errno.h
11 | .\adj.o: ..\Eigenmath\prototypes.h
12 |
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/adj.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/adj.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/alloc.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/alloc.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/alloc.d:
--------------------------------------------------------------------------------
1 | .\alloc.o: ..\Eigenmath\alloc.cpp
2 | .\alloc.o: ..\Eigenmath\stdafx.h
3 | .\alloc.o: ..\Eigenmath\defs.h
4 | .\alloc.o: C:\Keil\ARM\ARMCC\bin\..\include\stdio.h
5 | .\alloc.o: C:\Keil\ARM\ARMCC\bin\..\include\stdlib.h
6 | .\alloc.o: C:\Keil\ARM\ARMCC\bin\..\include\ctype.h
7 | .\alloc.o: C:\Keil\ARM\ARMCC\bin\..\include\string.h
8 | .\alloc.o: C:\Keil\ARM\ARMCC\bin\..\include\setjmp.h
9 | .\alloc.o: C:\Keil\ARM\ARMCC\bin\..\include\math.h
10 | .\alloc.o: C:\Keil\ARM\ARMCC\bin\..\include\errno.h
11 | .\alloc.o: ..\Eigenmath\prototypes.h
12 |
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/alloc.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/alloc.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/append.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/append.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/append.d:
--------------------------------------------------------------------------------
1 | .\append.o: ..\Eigenmath\append.cpp
2 | .\append.o: ..\Eigenmath\stdafx.h
3 | .\append.o: ..\Eigenmath\defs.h
4 | .\append.o: C:\Keil\ARM\ARMCC\bin\..\include\stdio.h
5 | .\append.o: C:\Keil\ARM\ARMCC\bin\..\include\stdlib.h
6 | .\append.o: C:\Keil\ARM\ARMCC\bin\..\include\ctype.h
7 | .\append.o: C:\Keil\ARM\ARMCC\bin\..\include\string.h
8 | .\append.o: C:\Keil\ARM\ARMCC\bin\..\include\setjmp.h
9 | .\append.o: C:\Keil\ARM\ARMCC\bin\..\include\math.h
10 | .\append.o: C:\Keil\ARM\ARMCC\bin\..\include\errno.h
11 | .\append.o: ..\Eigenmath\prototypes.h
12 |
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/append.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/append.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/arccos.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/arccos.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/arccos.d:
--------------------------------------------------------------------------------
1 | .\arccos.o: ..\Eigenmath\arccos.cpp
2 | .\arccos.o: ..\Eigenmath\stdafx.h
3 | .\arccos.o: ..\Eigenmath\defs.h
4 | .\arccos.o: C:\Keil\ARM\ARMCC\bin\..\include\stdio.h
5 | .\arccos.o: C:\Keil\ARM\ARMCC\bin\..\include\stdlib.h
6 | .\arccos.o: C:\Keil\ARM\ARMCC\bin\..\include\ctype.h
7 | .\arccos.o: C:\Keil\ARM\ARMCC\bin\..\include\string.h
8 | .\arccos.o: C:\Keil\ARM\ARMCC\bin\..\include\setjmp.h
9 | .\arccos.o: C:\Keil\ARM\ARMCC\bin\..\include\math.h
10 | .\arccos.o: C:\Keil\ARM\ARMCC\bin\..\include\errno.h
11 | .\arccos.o: ..\Eigenmath\prototypes.h
12 |
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/arccos.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/arccos.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/arccosh.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/arccosh.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/arccosh.d:
--------------------------------------------------------------------------------
1 | .\arccosh.o: ..\Eigenmath\arccosh.cpp
2 | .\arccosh.o: ..\Eigenmath\stdafx.h
3 | .\arccosh.o: ..\Eigenmath\defs.h
4 | .\arccosh.o: C:\Keil\ARM\ARMCC\bin\..\include\stdio.h
5 | .\arccosh.o: C:\Keil\ARM\ARMCC\bin\..\include\stdlib.h
6 | .\arccosh.o: C:\Keil\ARM\ARMCC\bin\..\include\ctype.h
7 | .\arccosh.o: C:\Keil\ARM\ARMCC\bin\..\include\string.h
8 | .\arccosh.o: C:\Keil\ARM\ARMCC\bin\..\include\setjmp.h
9 | .\arccosh.o: C:\Keil\ARM\ARMCC\bin\..\include\math.h
10 | .\arccosh.o: C:\Keil\ARM\ARMCC\bin\..\include\errno.h
11 | .\arccosh.o: ..\Eigenmath\prototypes.h
12 |
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/arccosh.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/arccosh.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/arcsin.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/arcsin.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/arcsin.d:
--------------------------------------------------------------------------------
1 | .\arcsin.o: ..\Eigenmath\arcsin.cpp
2 | .\arcsin.o: ..\Eigenmath\stdafx.h
3 | .\arcsin.o: ..\Eigenmath\defs.h
4 | .\arcsin.o: C:\Keil\ARM\ARMCC\bin\..\include\stdio.h
5 | .\arcsin.o: C:\Keil\ARM\ARMCC\bin\..\include\stdlib.h
6 | .\arcsin.o: C:\Keil\ARM\ARMCC\bin\..\include\ctype.h
7 | .\arcsin.o: C:\Keil\ARM\ARMCC\bin\..\include\string.h
8 | .\arcsin.o: C:\Keil\ARM\ARMCC\bin\..\include\setjmp.h
9 | .\arcsin.o: C:\Keil\ARM\ARMCC\bin\..\include\math.h
10 | .\arcsin.o: C:\Keil\ARM\ARMCC\bin\..\include\errno.h
11 | .\arcsin.o: ..\Eigenmath\prototypes.h
12 |
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/arcsin.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/arcsin.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/arcsinh.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/arcsinh.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/arcsinh.d:
--------------------------------------------------------------------------------
1 | .\arcsinh.o: ..\Eigenmath\arcsinh.cpp
2 | .\arcsinh.o: ..\Eigenmath\stdafx.h
3 | .\arcsinh.o: ..\Eigenmath\defs.h
4 | .\arcsinh.o: C:\Keil\ARM\ARMCC\bin\..\include\stdio.h
5 | .\arcsinh.o: C:\Keil\ARM\ARMCC\bin\..\include\stdlib.h
6 | .\arcsinh.o: C:\Keil\ARM\ARMCC\bin\..\include\ctype.h
7 | .\arcsinh.o: C:\Keil\ARM\ARMCC\bin\..\include\string.h
8 | .\arcsinh.o: C:\Keil\ARM\ARMCC\bin\..\include\setjmp.h
9 | .\arcsinh.o: C:\Keil\ARM\ARMCC\bin\..\include\math.h
10 | .\arcsinh.o: C:\Keil\ARM\ARMCC\bin\..\include\errno.h
11 | .\arcsinh.o: ..\Eigenmath\prototypes.h
12 |
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/arcsinh.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/arcsinh.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/arctan.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/arctan.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/arctan.d:
--------------------------------------------------------------------------------
1 | .\arctan.o: ..\Eigenmath\arctan.cpp
2 | .\arctan.o: ..\Eigenmath\stdafx.h
3 | .\arctan.o: ..\Eigenmath\defs.h
4 | .\arctan.o: C:\Keil\ARM\ARMCC\bin\..\include\stdio.h
5 | .\arctan.o: C:\Keil\ARM\ARMCC\bin\..\include\stdlib.h
6 | .\arctan.o: C:\Keil\ARM\ARMCC\bin\..\include\ctype.h
7 | .\arctan.o: C:\Keil\ARM\ARMCC\bin\..\include\string.h
8 | .\arctan.o: C:\Keil\ARM\ARMCC\bin\..\include\setjmp.h
9 | .\arctan.o: C:\Keil\ARM\ARMCC\bin\..\include\math.h
10 | .\arctan.o: C:\Keil\ARM\ARMCC\bin\..\include\errno.h
11 | .\arctan.o: ..\Eigenmath\prototypes.h
12 |
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/arctan.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/arctan.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/arctanh.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/arctanh.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/arctanh.d:
--------------------------------------------------------------------------------
1 | .\arctanh.o: ..\Eigenmath\arctanh.cpp
2 | .\arctanh.o: ..\Eigenmath\stdafx.h
3 | .\arctanh.o: ..\Eigenmath\defs.h
4 | .\arctanh.o: C:\Keil\ARM\ARMCC\bin\..\include\stdio.h
5 | .\arctanh.o: C:\Keil\ARM\ARMCC\bin\..\include\stdlib.h
6 | .\arctanh.o: C:\Keil\ARM\ARMCC\bin\..\include\ctype.h
7 | .\arctanh.o: C:\Keil\ARM\ARMCC\bin\..\include\string.h
8 | .\arctanh.o: C:\Keil\ARM\ARMCC\bin\..\include\setjmp.h
9 | .\arctanh.o: C:\Keil\ARM\ARMCC\bin\..\include\math.h
10 | .\arctanh.o: C:\Keil\ARM\ARMCC\bin\..\include\errno.h
11 | .\arctanh.o: ..\Eigenmath\prototypes.h
12 |
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/arctanh.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/arctanh.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/arg.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/arg.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/arg.d:
--------------------------------------------------------------------------------
1 | .\arg.o: ..\Eigenmath\arg.cpp
2 | .\arg.o: ..\Eigenmath\stdafx.h
3 | .\arg.o: ..\Eigenmath\defs.h
4 | .\arg.o: C:\Keil\ARM\ARMCC\bin\..\include\stdio.h
5 | .\arg.o: C:\Keil\ARM\ARMCC\bin\..\include\stdlib.h
6 | .\arg.o: C:\Keil\ARM\ARMCC\bin\..\include\ctype.h
7 | .\arg.o: C:\Keil\ARM\ARMCC\bin\..\include\string.h
8 | .\arg.o: C:\Keil\ARM\ARMCC\bin\..\include\setjmp.h
9 | .\arg.o: C:\Keil\ARM\ARMCC\bin\..\include\math.h
10 | .\arg.o: C:\Keil\ARM\ARMCC\bin\..\include\errno.h
11 | .\arg.o: ..\Eigenmath\prototypes.h
12 |
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/arg.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/arg.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/atomize.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/atomize.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/atomize.d:
--------------------------------------------------------------------------------
1 | .\atomize.o: ..\Eigenmath\atomize.cpp
2 | .\atomize.o: ..\Eigenmath\stdafx.h
3 | .\atomize.o: ..\Eigenmath\defs.h
4 | .\atomize.o: C:\Keil\ARM\ARMCC\bin\..\include\stdio.h
5 | .\atomize.o: C:\Keil\ARM\ARMCC\bin\..\include\stdlib.h
6 | .\atomize.o: C:\Keil\ARM\ARMCC\bin\..\include\ctype.h
7 | .\atomize.o: C:\Keil\ARM\ARMCC\bin\..\include\string.h
8 | .\atomize.o: C:\Keil\ARM\ARMCC\bin\..\include\setjmp.h
9 | .\atomize.o: C:\Keil\ARM\ARMCC\bin\..\include\math.h
10 | .\atomize.o: C:\Keil\ARM\ARMCC\bin\..\include\errno.h
11 | .\atomize.o: ..\Eigenmath\prototypes.h
12 |
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/atomize.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/atomize.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/bake.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/bake.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/bake.d:
--------------------------------------------------------------------------------
1 | .\bake.o: ..\Eigenmath\bake.cpp
2 | .\bake.o: ..\Eigenmath\stdafx.h
3 | .\bake.o: ..\Eigenmath\defs.h
4 | .\bake.o: C:\Keil\ARM\ARMCC\bin\..\include\stdio.h
5 | .\bake.o: C:\Keil\ARM\ARMCC\bin\..\include\stdlib.h
6 | .\bake.o: C:\Keil\ARM\ARMCC\bin\..\include\ctype.h
7 | .\bake.o: C:\Keil\ARM\ARMCC\bin\..\include\string.h
8 | .\bake.o: C:\Keil\ARM\ARMCC\bin\..\include\setjmp.h
9 | .\bake.o: C:\Keil\ARM\ARMCC\bin\..\include\math.h
10 | .\bake.o: C:\Keil\ARM\ARMCC\bin\..\include\errno.h
11 | .\bake.o: ..\Eigenmath\prototypes.h
12 |
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/bake.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/bake.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/besselj.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/besselj.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/besselj.d:
--------------------------------------------------------------------------------
1 | .\besselj.o: ..\Eigenmath\besselj.cpp
2 | .\besselj.o: ..\Eigenmath\stdafx.h
3 | .\besselj.o: ..\Eigenmath\defs.h
4 | .\besselj.o: C:\Keil\ARM\ARMCC\bin\..\include\stdio.h
5 | .\besselj.o: C:\Keil\ARM\ARMCC\bin\..\include\stdlib.h
6 | .\besselj.o: C:\Keil\ARM\ARMCC\bin\..\include\ctype.h
7 | .\besselj.o: C:\Keil\ARM\ARMCC\bin\..\include\string.h
8 | .\besselj.o: C:\Keil\ARM\ARMCC\bin\..\include\setjmp.h
9 | .\besselj.o: C:\Keil\ARM\ARMCC\bin\..\include\math.h
10 | .\besselj.o: C:\Keil\ARM\ARMCC\bin\..\include\errno.h
11 | .\besselj.o: ..\Eigenmath\prototypes.h
12 |
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/bessely.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/bessely.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/bessely.d:
--------------------------------------------------------------------------------
1 | .\bessely.o: ..\Eigenmath\bessely.cpp
2 | .\bessely.o: ..\Eigenmath\stdafx.h
3 | .\bessely.o: ..\Eigenmath\defs.h
4 | .\bessely.o: C:\Keil\ARM\ARMCC\bin\..\include\stdio.h
5 | .\bessely.o: C:\Keil\ARM\ARMCC\bin\..\include\stdlib.h
6 | .\bessely.o: C:\Keil\ARM\ARMCC\bin\..\include\ctype.h
7 | .\bessely.o: C:\Keil\ARM\ARMCC\bin\..\include\string.h
8 | .\bessely.o: C:\Keil\ARM\ARMCC\bin\..\include\setjmp.h
9 | .\bessely.o: C:\Keil\ARM\ARMCC\bin\..\include\math.h
10 | .\bessely.o: C:\Keil\ARM\ARMCC\bin\..\include\errno.h
11 | .\bessely.o: ..\Eigenmath\prototypes.h
12 |
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/bignum.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/bignum.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/bignum.d:
--------------------------------------------------------------------------------
1 | .\bignum.o: ..\Eigenmath\bignum.cpp
2 | .\bignum.o: ..\Eigenmath\stdafx.h
3 | .\bignum.o: ..\Eigenmath\defs.h
4 | .\bignum.o: C:\Keil\ARM\ARMCC\bin\..\include\stdio.h
5 | .\bignum.o: C:\Keil\ARM\ARMCC\bin\..\include\stdlib.h
6 | .\bignum.o: C:\Keil\ARM\ARMCC\bin\..\include\ctype.h
7 | .\bignum.o: C:\Keil\ARM\ARMCC\bin\..\include\string.h
8 | .\bignum.o: C:\Keil\ARM\ARMCC\bin\..\include\setjmp.h
9 | .\bignum.o: C:\Keil\ARM\ARMCC\bin\..\include\math.h
10 | .\bignum.o: C:\Keil\ARM\ARMCC\bin\..\include\errno.h
11 | .\bignum.o: ..\Eigenmath\prototypes.h
12 |
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/bignum.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/bignum.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/binomial.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/binomial.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/binomial.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/binomial.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/ceiling.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/ceiling.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/ceiling.d:
--------------------------------------------------------------------------------
1 | .\ceiling.o: ..\Eigenmath\ceiling.cpp
2 | .\ceiling.o: ..\Eigenmath\stdafx.h
3 | .\ceiling.o: ..\Eigenmath\defs.h
4 | .\ceiling.o: C:\Keil\ARM\ARMCC\bin\..\include\stdio.h
5 | .\ceiling.o: C:\Keil\ARM\ARMCC\bin\..\include\stdlib.h
6 | .\ceiling.o: C:\Keil\ARM\ARMCC\bin\..\include\ctype.h
7 | .\ceiling.o: C:\Keil\ARM\ARMCC\bin\..\include\string.h
8 | .\ceiling.o: C:\Keil\ARM\ARMCC\bin\..\include\setjmp.h
9 | .\ceiling.o: C:\Keil\ARM\ARMCC\bin\..\include\math.h
10 | .\ceiling.o: C:\Keil\ARM\ARMCC\bin\..\include\errno.h
11 | .\ceiling.o: ..\Eigenmath\prototypes.h
12 |
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/ceiling.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/ceiling.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/choose.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/choose.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/choose.d:
--------------------------------------------------------------------------------
1 | .\choose.o: ..\Eigenmath\choose.cpp
2 | .\choose.o: ..\Eigenmath\stdafx.h
3 | .\choose.o: ..\Eigenmath\defs.h
4 | .\choose.o: C:\Keil\ARM\ARMCC\bin\..\include\stdio.h
5 | .\choose.o: C:\Keil\ARM\ARMCC\bin\..\include\stdlib.h
6 | .\choose.o: C:\Keil\ARM\ARMCC\bin\..\include\ctype.h
7 | .\choose.o: C:\Keil\ARM\ARMCC\bin\..\include\string.h
8 | .\choose.o: C:\Keil\ARM\ARMCC\bin\..\include\setjmp.h
9 | .\choose.o: C:\Keil\ARM\ARMCC\bin\..\include\math.h
10 | .\choose.o: C:\Keil\ARM\ARMCC\bin\..\include\errno.h
11 | .\choose.o: ..\Eigenmath\prototypes.h
12 |
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/choose.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/choose.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/circexp.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/circexp.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/circexp.d:
--------------------------------------------------------------------------------
1 | .\circexp.o: ..\Eigenmath\circexp.cpp
2 | .\circexp.o: ..\Eigenmath\stdafx.h
3 | .\circexp.o: ..\Eigenmath\defs.h
4 | .\circexp.o: C:\Keil\ARM\ARMCC\bin\..\include\stdio.h
5 | .\circexp.o: C:\Keil\ARM\ARMCC\bin\..\include\stdlib.h
6 | .\circexp.o: C:\Keil\ARM\ARMCC\bin\..\include\ctype.h
7 | .\circexp.o: C:\Keil\ARM\ARMCC\bin\..\include\string.h
8 | .\circexp.o: C:\Keil\ARM\ARMCC\bin\..\include\setjmp.h
9 | .\circexp.o: C:\Keil\ARM\ARMCC\bin\..\include\math.h
10 | .\circexp.o: C:\Keil\ARM\ARMCC\bin\..\include\errno.h
11 | .\circexp.o: ..\Eigenmath\prototypes.h
12 |
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/circexp.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/circexp.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/clear.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/clear.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/clear.d:
--------------------------------------------------------------------------------
1 | .\clear.o: ..\Eigenmath\clear.cpp
2 | .\clear.o: ..\Eigenmath\stdafx.h
3 | .\clear.o: ..\Eigenmath\defs.h
4 | .\clear.o: C:\Keil\ARM\ARMCC\bin\..\include\stdio.h
5 | .\clear.o: C:\Keil\ARM\ARMCC\bin\..\include\stdlib.h
6 | .\clear.o: C:\Keil\ARM\ARMCC\bin\..\include\ctype.h
7 | .\clear.o: C:\Keil\ARM\ARMCC\bin\..\include\string.h
8 | .\clear.o: C:\Keil\ARM\ARMCC\bin\..\include\setjmp.h
9 | .\clear.o: C:\Keil\ARM\ARMCC\bin\..\include\math.h
10 | .\clear.o: C:\Keil\ARM\ARMCC\bin\..\include\errno.h
11 | .\clear.o: ..\Eigenmath\prototypes.h
12 |
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/clear.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/clear.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/clock.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/clock.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/clock.d:
--------------------------------------------------------------------------------
1 | .\clock.o: ..\Eigenmath\clock.cpp
2 | .\clock.o: ..\Eigenmath\stdafx.h
3 | .\clock.o: ..\Eigenmath\defs.h
4 | .\clock.o: C:\Keil\ARM\ARMCC\bin\..\include\stdio.h
5 | .\clock.o: C:\Keil\ARM\ARMCC\bin\..\include\stdlib.h
6 | .\clock.o: C:\Keil\ARM\ARMCC\bin\..\include\ctype.h
7 | .\clock.o: C:\Keil\ARM\ARMCC\bin\..\include\string.h
8 | .\clock.o: C:\Keil\ARM\ARMCC\bin\..\include\setjmp.h
9 | .\clock.o: C:\Keil\ARM\ARMCC\bin\..\include\math.h
10 | .\clock.o: C:\Keil\ARM\ARMCC\bin\..\include\errno.h
11 | .\clock.o: ..\Eigenmath\prototypes.h
12 |
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/clock.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/clock.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/coeff.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/coeff.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/coeff.d:
--------------------------------------------------------------------------------
1 | .\coeff.o: ..\Eigenmath\coeff.cpp
2 | .\coeff.o: ..\Eigenmath\stdafx.h
3 | .\coeff.o: ..\Eigenmath\defs.h
4 | .\coeff.o: C:\Keil\ARM\ARMCC\bin\..\include\stdio.h
5 | .\coeff.o: C:\Keil\ARM\ARMCC\bin\..\include\stdlib.h
6 | .\coeff.o: C:\Keil\ARM\ARMCC\bin\..\include\ctype.h
7 | .\coeff.o: C:\Keil\ARM\ARMCC\bin\..\include\string.h
8 | .\coeff.o: C:\Keil\ARM\ARMCC\bin\..\include\setjmp.h
9 | .\coeff.o: C:\Keil\ARM\ARMCC\bin\..\include\math.h
10 | .\coeff.o: C:\Keil\ARM\ARMCC\bin\..\include\errno.h
11 | .\coeff.o: ..\Eigenmath\prototypes.h
12 |
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/coeff.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/coeff.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/cofactor.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/cofactor.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/cofactor.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/cofactor.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/condense.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/condense.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/condense.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/condense.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/conj.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/conj.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/conj.d:
--------------------------------------------------------------------------------
1 | .\conj.o: ..\Eigenmath\conj.cpp
2 | .\conj.o: ..\Eigenmath\stdafx.h
3 | .\conj.o: ..\Eigenmath\defs.h
4 | .\conj.o: C:\Keil\ARM\ARMCC\bin\..\include\stdio.h
5 | .\conj.o: C:\Keil\ARM\ARMCC\bin\..\include\stdlib.h
6 | .\conj.o: C:\Keil\ARM\ARMCC\bin\..\include\ctype.h
7 | .\conj.o: C:\Keil\ARM\ARMCC\bin\..\include\string.h
8 | .\conj.o: C:\Keil\ARM\ARMCC\bin\..\include\setjmp.h
9 | .\conj.o: C:\Keil\ARM\ARMCC\bin\..\include\math.h
10 | .\conj.o: C:\Keil\ARM\ARMCC\bin\..\include\errno.h
11 | .\conj.o: ..\Eigenmath\prototypes.h
12 |
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/conj.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/conj.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/cons.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/cons.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/cons.d:
--------------------------------------------------------------------------------
1 | .\cons.o: ..\Eigenmath\cons.cpp
2 | .\cons.o: ..\Eigenmath\stdafx.h
3 | .\cons.o: ..\Eigenmath\defs.h
4 | .\cons.o: C:\Keil\ARM\ARMCC\bin\..\include\stdio.h
5 | .\cons.o: C:\Keil\ARM\ARMCC\bin\..\include\stdlib.h
6 | .\cons.o: C:\Keil\ARM\ARMCC\bin\..\include\ctype.h
7 | .\cons.o: C:\Keil\ARM\ARMCC\bin\..\include\string.h
8 | .\cons.o: C:\Keil\ARM\ARMCC\bin\..\include\setjmp.h
9 | .\cons.o: C:\Keil\ARM\ARMCC\bin\..\include\math.h
10 | .\cons.o: C:\Keil\ARM\ARMCC\bin\..\include\errno.h
11 | .\cons.o: ..\Eigenmath\prototypes.h
12 |
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/cons.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/cons.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/contract.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/contract.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/contract.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/contract.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/cos.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/cos.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/cos.d:
--------------------------------------------------------------------------------
1 | .\cos.o: ..\Eigenmath\cos.cpp
2 | .\cos.o: ..\Eigenmath\stdafx.h
3 | .\cos.o: ..\Eigenmath\defs.h
4 | .\cos.o: C:\Keil\ARM\ARMCC\bin\..\include\stdio.h
5 | .\cos.o: C:\Keil\ARM\ARMCC\bin\..\include\stdlib.h
6 | .\cos.o: C:\Keil\ARM\ARMCC\bin\..\include\ctype.h
7 | .\cos.o: C:\Keil\ARM\ARMCC\bin\..\include\string.h
8 | .\cos.o: C:\Keil\ARM\ARMCC\bin\..\include\setjmp.h
9 | .\cos.o: C:\Keil\ARM\ARMCC\bin\..\include\math.h
10 | .\cos.o: C:\Keil\ARM\ARMCC\bin\..\include\errno.h
11 | .\cos.o: ..\Eigenmath\prototypes.h
12 |
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/cos.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/cos.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/cosh.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/cosh.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/cosh.d:
--------------------------------------------------------------------------------
1 | .\cosh.o: ..\Eigenmath\cosh.cpp
2 | .\cosh.o: ..\Eigenmath\stdafx.h
3 | .\cosh.o: ..\Eigenmath\defs.h
4 | .\cosh.o: C:\Keil\ARM\ARMCC\bin\..\include\stdio.h
5 | .\cosh.o: C:\Keil\ARM\ARMCC\bin\..\include\stdlib.h
6 | .\cosh.o: C:\Keil\ARM\ARMCC\bin\..\include\ctype.h
7 | .\cosh.o: C:\Keil\ARM\ARMCC\bin\..\include\string.h
8 | .\cosh.o: C:\Keil\ARM\ARMCC\bin\..\include\setjmp.h
9 | .\cosh.o: C:\Keil\ARM\ARMCC\bin\..\include\math.h
10 | .\cosh.o: C:\Keil\ARM\ARMCC\bin\..\include\errno.h
11 | .\cosh.o: ..\Eigenmath\prototypes.h
12 |
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/cosh.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/cosh.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/data.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/data.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/data.d:
--------------------------------------------------------------------------------
1 | .\data.o: ..\Eigenmath\data.cpp
2 | .\data.o: ..\Eigenmath\stdafx.h
3 | .\data.o: ..\Eigenmath\defs.h
4 | .\data.o: C:\Keil\ARM\ARMCC\bin\..\include\stdio.h
5 | .\data.o: C:\Keil\ARM\ARMCC\bin\..\include\stdlib.h
6 | .\data.o: C:\Keil\ARM\ARMCC\bin\..\include\ctype.h
7 | .\data.o: C:\Keil\ARM\ARMCC\bin\..\include\string.h
8 | .\data.o: C:\Keil\ARM\ARMCC\bin\..\include\setjmp.h
9 | .\data.o: C:\Keil\ARM\ARMCC\bin\..\include\math.h
10 | .\data.o: C:\Keil\ARM\ARMCC\bin\..\include\errno.h
11 | .\data.o: ..\Eigenmath\prototypes.h
12 |
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/data.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/data.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/dconsole.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/dconsole.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/dconsole.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/dconsole.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/decomp.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/decomp.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/decomp.d:
--------------------------------------------------------------------------------
1 | .\decomp.o: ..\Eigenmath\decomp.cpp
2 | .\decomp.o: ..\Eigenmath\stdafx.h
3 | .\decomp.o: ..\Eigenmath\defs.h
4 | .\decomp.o: C:\Keil\ARM\ARMCC\bin\..\include\stdio.h
5 | .\decomp.o: C:\Keil\ARM\ARMCC\bin\..\include\stdlib.h
6 | .\decomp.o: C:\Keil\ARM\ARMCC\bin\..\include\ctype.h
7 | .\decomp.o: C:\Keil\ARM\ARMCC\bin\..\include\string.h
8 | .\decomp.o: C:\Keil\ARM\ARMCC\bin\..\include\setjmp.h
9 | .\decomp.o: C:\Keil\ARM\ARMCC\bin\..\include\math.h
10 | .\decomp.o: C:\Keil\ARM\ARMCC\bin\..\include\errno.h
11 | .\decomp.o: ..\Eigenmath\prototypes.h
12 |
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/decomp.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/decomp.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/define.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/define.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/define.d:
--------------------------------------------------------------------------------
1 | .\define.o: ..\Eigenmath\define.cpp
2 | .\define.o: ..\Eigenmath\stdafx.h
3 | .\define.o: ..\Eigenmath\defs.h
4 | .\define.o: C:\Keil\ARM\ARMCC\bin\..\include\stdio.h
5 | .\define.o: C:\Keil\ARM\ARMCC\bin\..\include\stdlib.h
6 | .\define.o: C:\Keil\ARM\ARMCC\bin\..\include\ctype.h
7 | .\define.o: C:\Keil\ARM\ARMCC\bin\..\include\string.h
8 | .\define.o: C:\Keil\ARM\ARMCC\bin\..\include\setjmp.h
9 | .\define.o: C:\Keil\ARM\ARMCC\bin\..\include\math.h
10 | .\define.o: C:\Keil\ARM\ARMCC\bin\..\include\errno.h
11 | .\define.o: ..\Eigenmath\prototypes.h
12 |
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/define.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/define.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/defint.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/defint.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/defint.d:
--------------------------------------------------------------------------------
1 | .\defint.o: ..\Eigenmath\defint.cpp
2 | .\defint.o: ..\Eigenmath\stdafx.h
3 | .\defint.o: ..\Eigenmath\defs.h
4 | .\defint.o: C:\Keil\ARM\ARMCC\bin\..\include\stdio.h
5 | .\defint.o: C:\Keil\ARM\ARMCC\bin\..\include\stdlib.h
6 | .\defint.o: C:\Keil\ARM\ARMCC\bin\..\include\ctype.h
7 | .\defint.o: C:\Keil\ARM\ARMCC\bin\..\include\string.h
8 | .\defint.o: C:\Keil\ARM\ARMCC\bin\..\include\setjmp.h
9 | .\defint.o: C:\Keil\ARM\ARMCC\bin\..\include\math.h
10 | .\defint.o: C:\Keil\ARM\ARMCC\bin\..\include\errno.h
11 | .\defint.o: ..\Eigenmath\prototypes.h
12 |
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/defint.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/defint.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/degree.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/degree.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/degree.d:
--------------------------------------------------------------------------------
1 | .\degree.o: ..\Eigenmath\degree.cpp
2 | .\degree.o: ..\Eigenmath\stdafx.h
3 | .\degree.o: ..\Eigenmath\defs.h
4 | .\degree.o: C:\Keil\ARM\ARMCC\bin\..\include\stdio.h
5 | .\degree.o: C:\Keil\ARM\ARMCC\bin\..\include\stdlib.h
6 | .\degree.o: C:\Keil\ARM\ARMCC\bin\..\include\ctype.h
7 | .\degree.o: C:\Keil\ARM\ARMCC\bin\..\include\string.h
8 | .\degree.o: C:\Keil\ARM\ARMCC\bin\..\include\setjmp.h
9 | .\degree.o: C:\Keil\ARM\ARMCC\bin\..\include\math.h
10 | .\degree.o: C:\Keil\ARM\ARMCC\bin\..\include\errno.h
11 | .\degree.o: ..\Eigenmath\prototypes.h
12 |
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/degree.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/degree.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/denominator.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/denominator.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/denominator.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/denominator.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/derivative.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/derivative.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/derivative.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/derivative.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/det.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/det.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/det.d:
--------------------------------------------------------------------------------
1 | .\det.o: ..\Eigenmath\det.cpp
2 | .\det.o: ..\Eigenmath\stdafx.h
3 | .\det.o: ..\Eigenmath\defs.h
4 | .\det.o: C:\Keil\ARM\ARMCC\bin\..\include\stdio.h
5 | .\det.o: C:\Keil\ARM\ARMCC\bin\..\include\stdlib.h
6 | .\det.o: C:\Keil\ARM\ARMCC\bin\..\include\ctype.h
7 | .\det.o: C:\Keil\ARM\ARMCC\bin\..\include\string.h
8 | .\det.o: C:\Keil\ARM\ARMCC\bin\..\include\setjmp.h
9 | .\det.o: C:\Keil\ARM\ARMCC\bin\..\include\math.h
10 | .\det.o: C:\Keil\ARM\ARMCC\bin\..\include\errno.h
11 | .\det.o: ..\Eigenmath\prototypes.h
12 |
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/det.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/det.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/dirac.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/dirac.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/dirac.d:
--------------------------------------------------------------------------------
1 | .\dirac.o: ..\Eigenmath\dirac.cpp
2 | .\dirac.o: ..\Eigenmath\stdafx.h
3 | .\dirac.o: ..\Eigenmath\defs.h
4 | .\dirac.o: C:\Keil\ARM\ARMCC\bin\..\include\stdio.h
5 | .\dirac.o: C:\Keil\ARM\ARMCC\bin\..\include\stdlib.h
6 | .\dirac.o: C:\Keil\ARM\ARMCC\bin\..\include\ctype.h
7 | .\dirac.o: C:\Keil\ARM\ARMCC\bin\..\include\string.h
8 | .\dirac.o: C:\Keil\ARM\ARMCC\bin\..\include\setjmp.h
9 | .\dirac.o: C:\Keil\ARM\ARMCC\bin\..\include\math.h
10 | .\dirac.o: C:\Keil\ARM\ARMCC\bin\..\include\errno.h
11 | .\dirac.o: ..\Eigenmath\prototypes.h
12 |
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/dirac.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/dirac.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/diskio.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/diskio.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/diskio.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/diskio.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/distill.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/distill.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/distill.d:
--------------------------------------------------------------------------------
1 | .\distill.o: ..\Eigenmath\distill.cpp
2 | .\distill.o: ..\Eigenmath\stdafx.h
3 | .\distill.o: ..\Eigenmath\defs.h
4 | .\distill.o: C:\Keil\ARM\ARMCC\bin\..\include\stdio.h
5 | .\distill.o: C:\Keil\ARM\ARMCC\bin\..\include\stdlib.h
6 | .\distill.o: C:\Keil\ARM\ARMCC\bin\..\include\ctype.h
7 | .\distill.o: C:\Keil\ARM\ARMCC\bin\..\include\string.h
8 | .\distill.o: C:\Keil\ARM\ARMCC\bin\..\include\setjmp.h
9 | .\distill.o: C:\Keil\ARM\ARMCC\bin\..\include\math.h
10 | .\distill.o: C:\Keil\ARM\ARMCC\bin\..\include\errno.h
11 | .\distill.o: ..\Eigenmath\prototypes.h
12 |
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/distill.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/distill.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/divisors.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/divisors.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/divisors.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/divisors.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/dpow.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/dpow.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/dpow.d:
--------------------------------------------------------------------------------
1 | .\dpow.o: ..\Eigenmath\dpow.cpp
2 | .\dpow.o: ..\Eigenmath\stdafx.h
3 | .\dpow.o: ..\Eigenmath\defs.h
4 | .\dpow.o: C:\Keil\ARM\ARMCC\bin\..\include\stdio.h
5 | .\dpow.o: C:\Keil\ARM\ARMCC\bin\..\include\stdlib.h
6 | .\dpow.o: C:\Keil\ARM\ARMCC\bin\..\include\ctype.h
7 | .\dpow.o: C:\Keil\ARM\ARMCC\bin\..\include\string.h
8 | .\dpow.o: C:\Keil\ARM\ARMCC\bin\..\include\setjmp.h
9 | .\dpow.o: C:\Keil\ARM\ARMCC\bin\..\include\math.h
10 | .\dpow.o: C:\Keil\ARM\ARMCC\bin\..\include\errno.h
11 | .\dpow.o: ..\Eigenmath\prototypes.h
12 |
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/dpow.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/dpow.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/dsolve.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/dsolve.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/dsolve.d:
--------------------------------------------------------------------------------
1 | .\dsolve.o: ..\Eigenmath\dsolve.cpp
2 | .\dsolve.o: ..\Eigenmath\stdafx.h
3 | .\dsolve.o: ..\Eigenmath\defs.h
4 | .\dsolve.o: C:\Keil\ARM\ARMCC\bin\..\include\stdio.h
5 | .\dsolve.o: C:\Keil\ARM\ARMCC\bin\..\include\stdlib.h
6 | .\dsolve.o: C:\Keil\ARM\ARMCC\bin\..\include\ctype.h
7 | .\dsolve.o: C:\Keil\ARM\ARMCC\bin\..\include\string.h
8 | .\dsolve.o: C:\Keil\ARM\ARMCC\bin\..\include\setjmp.h
9 | .\dsolve.o: C:\Keil\ARM\ARMCC\bin\..\include\math.h
10 | .\dsolve.o: C:\Keil\ARM\ARMCC\bin\..\include\errno.h
11 | .\dsolve.o: ..\Eigenmath\prototypes.h
12 |
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/dsolve.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/dsolve.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/eigen.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/eigen.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/eigen.d:
--------------------------------------------------------------------------------
1 | .\eigen.o: ..\Eigenmath\eigen.cpp
2 | .\eigen.o: ..\Eigenmath\stdafx.h
3 | .\eigen.o: ..\Eigenmath\defs.h
4 | .\eigen.o: C:\Keil\ARM\ARMCC\bin\..\include\stdio.h
5 | .\eigen.o: C:\Keil\ARM\ARMCC\bin\..\include\stdlib.h
6 | .\eigen.o: C:\Keil\ARM\ARMCC\bin\..\include\ctype.h
7 | .\eigen.o: C:\Keil\ARM\ARMCC\bin\..\include\string.h
8 | .\eigen.o: C:\Keil\ARM\ARMCC\bin\..\include\setjmp.h
9 | .\eigen.o: C:\Keil\ARM\ARMCC\bin\..\include\math.h
10 | .\eigen.o: C:\Keil\ARM\ARMCC\bin\..\include\errno.h
11 | .\eigen.o: ..\Eigenmath\prototypes.h
12 |
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/eigen.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/eigen.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/emain.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/emain.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/emain.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/emain.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/emisc.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/emisc.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/emisc.d:
--------------------------------------------------------------------------------
1 | .\emisc.o: ..\Eigenmath\emisc.cpp
2 | .\emisc.o: ..\Eigenmath\stdafx.h
3 | .\emisc.o: ..\Eigenmath\defs.h
4 | .\emisc.o: C:\Keil\ARM\ARMCC\bin\..\include\stdio.h
5 | .\emisc.o: C:\Keil\ARM\ARMCC\bin\..\include\stdlib.h
6 | .\emisc.o: C:\Keil\ARM\ARMCC\bin\..\include\ctype.h
7 | .\emisc.o: C:\Keil\ARM\ARMCC\bin\..\include\string.h
8 | .\emisc.o: C:\Keil\ARM\ARMCC\bin\..\include\setjmp.h
9 | .\emisc.o: C:\Keil\ARM\ARMCC\bin\..\include\math.h
10 | .\emisc.o: C:\Keil\ARM\ARMCC\bin\..\include\errno.h
11 | .\emisc.o: ..\Eigenmath\prototypes.h
12 |
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/emisc.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/emisc.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/erf.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/erf.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/erf.d:
--------------------------------------------------------------------------------
1 | .\erf.o: ..\Eigenmath\erf.cpp
2 | .\erf.o: ..\Eigenmath\stdafx.h
3 | .\erf.o: ..\Eigenmath\defs.h
4 | .\erf.o: C:\Keil\ARM\ARMCC\bin\..\include\stdio.h
5 | .\erf.o: C:\Keil\ARM\ARMCC\bin\..\include\stdlib.h
6 | .\erf.o: C:\Keil\ARM\ARMCC\bin\..\include\ctype.h
7 | .\erf.o: C:\Keil\ARM\ARMCC\bin\..\include\string.h
8 | .\erf.o: C:\Keil\ARM\ARMCC\bin\..\include\setjmp.h
9 | .\erf.o: C:\Keil\ARM\ARMCC\bin\..\include\math.h
10 | .\erf.o: C:\Keil\ARM\ARMCC\bin\..\include\errno.h
11 | .\erf.o: ..\Eigenmath\prototypes.h
12 |
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/erf.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/erf.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/erfc.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/erfc.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/erfc.d:
--------------------------------------------------------------------------------
1 | .\erfc.o: ..\Eigenmath\erfc.cpp
2 | .\erfc.o: ..\Eigenmath\stdafx.h
3 | .\erfc.o: ..\Eigenmath\defs.h
4 | .\erfc.o: C:\Keil\ARM\ARMCC\bin\..\include\stdio.h
5 | .\erfc.o: C:\Keil\ARM\ARMCC\bin\..\include\stdlib.h
6 | .\erfc.o: C:\Keil\ARM\ARMCC\bin\..\include\ctype.h
7 | .\erfc.o: C:\Keil\ARM\ARMCC\bin\..\include\string.h
8 | .\erfc.o: C:\Keil\ARM\ARMCC\bin\..\include\setjmp.h
9 | .\erfc.o: C:\Keil\ARM\ARMCC\bin\..\include\math.h
10 | .\erfc.o: C:\Keil\ARM\ARMCC\bin\..\include\errno.h
11 | .\erfc.o: ..\Eigenmath\prototypes.h
12 |
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/erfc.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/erfc.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/eval.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/eval.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/eval.d:
--------------------------------------------------------------------------------
1 | .\eval.o: ..\Eigenmath\eval.cpp
2 | .\eval.o: ..\Eigenmath\stdafx.h
3 | .\eval.o: ..\Eigenmath\defs.h
4 | .\eval.o: C:\Keil\ARM\ARMCC\bin\..\include\stdio.h
5 | .\eval.o: C:\Keil\ARM\ARMCC\bin\..\include\stdlib.h
6 | .\eval.o: C:\Keil\ARM\ARMCC\bin\..\include\ctype.h
7 | .\eval.o: C:\Keil\ARM\ARMCC\bin\..\include\string.h
8 | .\eval.o: C:\Keil\ARM\ARMCC\bin\..\include\setjmp.h
9 | .\eval.o: C:\Keil\ARM\ARMCC\bin\..\include\math.h
10 | .\eval.o: C:\Keil\ARM\ARMCC\bin\..\include\errno.h
11 | .\eval.o: ..\Eigenmath\prototypes.h
12 |
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/eval.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/eval.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/expand.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/expand.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/expand.d:
--------------------------------------------------------------------------------
1 | .\expand.o: ..\Eigenmath\expand.cpp
2 | .\expand.o: ..\Eigenmath\stdafx.h
3 | .\expand.o: ..\Eigenmath\defs.h
4 | .\expand.o: C:\Keil\ARM\ARMCC\bin\..\include\stdio.h
5 | .\expand.o: C:\Keil\ARM\ARMCC\bin\..\include\stdlib.h
6 | .\expand.o: C:\Keil\ARM\ARMCC\bin\..\include\ctype.h
7 | .\expand.o: C:\Keil\ARM\ARMCC\bin\..\include\string.h
8 | .\expand.o: C:\Keil\ARM\ARMCC\bin\..\include\setjmp.h
9 | .\expand.o: C:\Keil\ARM\ARMCC\bin\..\include\math.h
10 | .\expand.o: C:\Keil\ARM\ARMCC\bin\..\include\errno.h
11 | .\expand.o: ..\Eigenmath\prototypes.h
12 |
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/expand.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/expand.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/expcos.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/expcos.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/expcos.d:
--------------------------------------------------------------------------------
1 | .\expcos.o: ..\Eigenmath\expcos.cpp
2 | .\expcos.o: ..\Eigenmath\stdafx.h
3 | .\expcos.o: ..\Eigenmath\defs.h
4 | .\expcos.o: C:\Keil\ARM\ARMCC\bin\..\include\stdio.h
5 | .\expcos.o: C:\Keil\ARM\ARMCC\bin\..\include\stdlib.h
6 | .\expcos.o: C:\Keil\ARM\ARMCC\bin\..\include\ctype.h
7 | .\expcos.o: C:\Keil\ARM\ARMCC\bin\..\include\string.h
8 | .\expcos.o: C:\Keil\ARM\ARMCC\bin\..\include\setjmp.h
9 | .\expcos.o: C:\Keil\ARM\ARMCC\bin\..\include\math.h
10 | .\expcos.o: C:\Keil\ARM\ARMCC\bin\..\include\errno.h
11 | .\expcos.o: ..\Eigenmath\prototypes.h
12 |
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/expcos.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/expcos.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/expsin.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/expsin.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/expsin.d:
--------------------------------------------------------------------------------
1 | .\expsin.o: ..\Eigenmath\expsin.cpp
2 | .\expsin.o: ..\Eigenmath\stdafx.h
3 | .\expsin.o: ..\Eigenmath\defs.h
4 | .\expsin.o: C:\Keil\ARM\ARMCC\bin\..\include\stdio.h
5 | .\expsin.o: C:\Keil\ARM\ARMCC\bin\..\include\stdlib.h
6 | .\expsin.o: C:\Keil\ARM\ARMCC\bin\..\include\ctype.h
7 | .\expsin.o: C:\Keil\ARM\ARMCC\bin\..\include\string.h
8 | .\expsin.o: C:\Keil\ARM\ARMCC\bin\..\include\setjmp.h
9 | .\expsin.o: C:\Keil\ARM\ARMCC\bin\..\include\math.h
10 | .\expsin.o: C:\Keil\ARM\ARMCC\bin\..\include\errno.h
11 | .\expsin.o: ..\Eigenmath\prototypes.h
12 |
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/expsin.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/expsin.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/factor.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/factor.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/factor.d:
--------------------------------------------------------------------------------
1 | .\factor.o: ..\Eigenmath\factor.cpp
2 | .\factor.o: ..\Eigenmath\stdafx.h
3 | .\factor.o: ..\Eigenmath\defs.h
4 | .\factor.o: C:\Keil\ARM\ARMCC\bin\..\include\stdio.h
5 | .\factor.o: C:\Keil\ARM\ARMCC\bin\..\include\stdlib.h
6 | .\factor.o: C:\Keil\ARM\ARMCC\bin\..\include\ctype.h
7 | .\factor.o: C:\Keil\ARM\ARMCC\bin\..\include\string.h
8 | .\factor.o: C:\Keil\ARM\ARMCC\bin\..\include\setjmp.h
9 | .\factor.o: C:\Keil\ARM\ARMCC\bin\..\include\math.h
10 | .\factor.o: C:\Keil\ARM\ARMCC\bin\..\include\errno.h
11 | .\factor.o: ..\Eigenmath\prototypes.h
12 |
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/factor.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/factor.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/factorial.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/factorial.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/factorial.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/factorial.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/factorpoly.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/factorpoly.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/factorpoly.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/factorpoly.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/factors.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/factors.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/factors.d:
--------------------------------------------------------------------------------
1 | .\factors.o: ..\Eigenmath\factors.cpp
2 | .\factors.o: ..\Eigenmath\stdafx.h
3 | .\factors.o: ..\Eigenmath\defs.h
4 | .\factors.o: C:\Keil\ARM\ARMCC\bin\..\include\stdio.h
5 | .\factors.o: C:\Keil\ARM\ARMCC\bin\..\include\stdlib.h
6 | .\factors.o: C:\Keil\ARM\ARMCC\bin\..\include\ctype.h
7 | .\factors.o: C:\Keil\ARM\ARMCC\bin\..\include\string.h
8 | .\factors.o: C:\Keil\ARM\ARMCC\bin\..\include\setjmp.h
9 | .\factors.o: C:\Keil\ARM\ARMCC\bin\..\include\math.h
10 | .\factors.o: C:\Keil\ARM\ARMCC\bin\..\include\errno.h
11 | .\factors.o: ..\Eigenmath\prototypes.h
12 |
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/factors.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/factors.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/ff.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/ff.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/ff.d:
--------------------------------------------------------------------------------
1 | .\ff.o: ..\FATFS\ff.c
2 | .\ff.o: ..\FATFS\ff.h
3 | .\ff.o: ..\FATFS\integer.h
4 | .\ff.o: ..\FATFS\ffconf.h
5 | .\ff.o: ..\FATFS\diskio.h
6 |
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/ff.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/ff.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/filegui.d:
--------------------------------------------------------------------------------
1 | .\filegui.o: ..\Eigenmath\fileGUI.cpp
2 |
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/fileprovider.d:
--------------------------------------------------------------------------------
1 | .\fileprovider.o: ..\Eigenmath\fileProvider.cpp
2 |
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/filter.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/filter.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/filter.d:
--------------------------------------------------------------------------------
1 | .\filter.o: ..\Eigenmath\filter.cpp
2 | .\filter.o: ..\Eigenmath\stdafx.h
3 | .\filter.o: ..\Eigenmath\defs.h
4 | .\filter.o: C:\Keil\ARM\ARMCC\bin\..\include\stdio.h
5 | .\filter.o: C:\Keil\ARM\ARMCC\bin\..\include\stdlib.h
6 | .\filter.o: C:\Keil\ARM\ARMCC\bin\..\include\ctype.h
7 | .\filter.o: C:\Keil\ARM\ARMCC\bin\..\include\string.h
8 | .\filter.o: C:\Keil\ARM\ARMCC\bin\..\include\setjmp.h
9 | .\filter.o: C:\Keil\ARM\ARMCC\bin\..\include\math.h
10 | .\filter.o: C:\Keil\ARM\ARMCC\bin\..\include\errno.h
11 | .\filter.o: ..\Eigenmath\prototypes.h
12 |
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/filter.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/filter.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/find.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/find.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/find.d:
--------------------------------------------------------------------------------
1 | .\find.o: ..\Eigenmath\find.cpp
2 | .\find.o: ..\Eigenmath\stdafx.h
3 | .\find.o: ..\Eigenmath\defs.h
4 | .\find.o: C:\Keil\ARM\ARMCC\bin\..\include\stdio.h
5 | .\find.o: C:\Keil\ARM\ARMCC\bin\..\include\stdlib.h
6 | .\find.o: C:\Keil\ARM\ARMCC\bin\..\include\ctype.h
7 | .\find.o: C:\Keil\ARM\ARMCC\bin\..\include\string.h
8 | .\find.o: C:\Keil\ARM\ARMCC\bin\..\include\setjmp.h
9 | .\find.o: C:\Keil\ARM\ARMCC\bin\..\include\math.h
10 | .\find.o: C:\Keil\ARM\ARMCC\bin\..\include\errno.h
11 | .\find.o: ..\Eigenmath\prototypes.h
12 |
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/find.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/find.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/float.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/float.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/float.d:
--------------------------------------------------------------------------------
1 | .\float.o: ..\Eigenmath\float.cpp
2 | .\float.o: ..\Eigenmath\stdafx.h
3 | .\float.o: ..\Eigenmath\defs.h
4 | .\float.o: C:\Keil\ARM\ARMCC\bin\..\include\stdio.h
5 | .\float.o: C:\Keil\ARM\ARMCC\bin\..\include\stdlib.h
6 | .\float.o: C:\Keil\ARM\ARMCC\bin\..\include\ctype.h
7 | .\float.o: C:\Keil\ARM\ARMCC\bin\..\include\string.h
8 | .\float.o: C:\Keil\ARM\ARMCC\bin\..\include\setjmp.h
9 | .\float.o: C:\Keil\ARM\ARMCC\bin\..\include\math.h
10 | .\float.o: C:\Keil\ARM\ARMCC\bin\..\include\errno.h
11 | .\float.o: ..\Eigenmath\prototypes.h
12 |
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/float.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/float.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/floor.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/floor.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/floor.d:
--------------------------------------------------------------------------------
1 | .\floor.o: ..\Eigenmath\floor.cpp
2 | .\floor.o: ..\Eigenmath\stdafx.h
3 | .\floor.o: ..\Eigenmath\defs.h
4 | .\floor.o: C:\Keil\ARM\ARMCC\bin\..\include\stdio.h
5 | .\floor.o: C:\Keil\ARM\ARMCC\bin\..\include\stdlib.h
6 | .\floor.o: C:\Keil\ARM\ARMCC\bin\..\include\ctype.h
7 | .\floor.o: C:\Keil\ARM\ARMCC\bin\..\include\string.h
8 | .\floor.o: C:\Keil\ARM\ARMCC\bin\..\include\setjmp.h
9 | .\floor.o: C:\Keil\ARM\ARMCC\bin\..\include\math.h
10 | .\floor.o: C:\Keil\ARM\ARMCC\bin\..\include\errno.h
11 | .\floor.o: ..\Eigenmath\prototypes.h
12 |
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/floor.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/floor.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/for.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/for.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/for.d:
--------------------------------------------------------------------------------
1 | .\for.o: ..\Eigenmath\for.cpp
2 | .\for.o: ..\Eigenmath\stdafx.h
3 | .\for.o: ..\Eigenmath\defs.h
4 | .\for.o: C:\Keil\ARM\ARMCC\bin\..\include\stdio.h
5 | .\for.o: C:\Keil\ARM\ARMCC\bin\..\include\stdlib.h
6 | .\for.o: C:\Keil\ARM\ARMCC\bin\..\include\ctype.h
7 | .\for.o: C:\Keil\ARM\ARMCC\bin\..\include\string.h
8 | .\for.o: C:\Keil\ARM\ARMCC\bin\..\include\setjmp.h
9 | .\for.o: C:\Keil\ARM\ARMCC\bin\..\include\math.h
10 | .\for.o: C:\Keil\ARM\ARMCC\bin\..\include\errno.h
11 | .\for.o: ..\Eigenmath\prototypes.h
12 |
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/for.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/for.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/g2048.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/g2048.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/g2048.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/g2048.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/gamma.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/gamma.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/gamma.d:
--------------------------------------------------------------------------------
1 | .\gamma.o: ..\Eigenmath\gamma.cpp
2 | .\gamma.o: ..\Eigenmath\stdafx.h
3 | .\gamma.o: ..\Eigenmath\defs.h
4 | .\gamma.o: C:\Keil\ARM\ARMCC\bin\..\include\stdio.h
5 | .\gamma.o: C:\Keil\ARM\ARMCC\bin\..\include\stdlib.h
6 | .\gamma.o: C:\Keil\ARM\ARMCC\bin\..\include\ctype.h
7 | .\gamma.o: C:\Keil\ARM\ARMCC\bin\..\include\string.h
8 | .\gamma.o: C:\Keil\ARM\ARMCC\bin\..\include\setjmp.h
9 | .\gamma.o: C:\Keil\ARM\ARMCC\bin\..\include\math.h
10 | .\gamma.o: C:\Keil\ARM\ARMCC\bin\..\include\errno.h
11 | .\gamma.o: ..\Eigenmath\prototypes.h
12 |
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/gamma.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/gamma.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/gcd.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/gcd.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/gcd.d:
--------------------------------------------------------------------------------
1 | .\gcd.o: ..\Eigenmath\gcd.cpp
2 | .\gcd.o: ..\Eigenmath\stdafx.h
3 | .\gcd.o: ..\Eigenmath\defs.h
4 | .\gcd.o: C:\Keil\ARM\ARMCC\bin\..\include\stdio.h
5 | .\gcd.o: C:\Keil\ARM\ARMCC\bin\..\include\stdlib.h
6 | .\gcd.o: C:\Keil\ARM\ARMCC\bin\..\include\ctype.h
7 | .\gcd.o: C:\Keil\ARM\ARMCC\bin\..\include\string.h
8 | .\gcd.o: C:\Keil\ARM\ARMCC\bin\..\include\setjmp.h
9 | .\gcd.o: C:\Keil\ARM\ARMCC\bin\..\include\math.h
10 | .\gcd.o: C:\Keil\ARM\ARMCC\bin\..\include\errno.h
11 | .\gcd.o: ..\Eigenmath\prototypes.h
12 |
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/gcd.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/gcd.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/graphicsprovider.d:
--------------------------------------------------------------------------------
1 | .\graphicsprovider.o: ..\Eigenmath\graphicsProvider.cpp
2 |
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/guess.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/guess.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/guess.d:
--------------------------------------------------------------------------------
1 | .\guess.o: ..\Eigenmath\guess.cpp
2 | .\guess.o: ..\Eigenmath\stdafx.h
3 | .\guess.o: ..\Eigenmath\defs.h
4 | .\guess.o: C:\Keil\ARM\ARMCC\bin\..\include\stdio.h
5 | .\guess.o: C:\Keil\ARM\ARMCC\bin\..\include\stdlib.h
6 | .\guess.o: C:\Keil\ARM\ARMCC\bin\..\include\ctype.h
7 | .\guess.o: C:\Keil\ARM\ARMCC\bin\..\include\string.h
8 | .\guess.o: C:\Keil\ARM\ARMCC\bin\..\include\setjmp.h
9 | .\guess.o: C:\Keil\ARM\ARMCC\bin\..\include\math.h
10 | .\guess.o: C:\Keil\ARM\ARMCC\bin\..\include\errno.h
11 | .\guess.o: ..\Eigenmath\prototypes.h
12 |
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/guess.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/guess.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/hermite.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/hermite.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/hermite.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/hermite.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/hilbert.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/hilbert.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/hilbert.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/hilbert.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/history.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/history.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/history.d:
--------------------------------------------------------------------------------
1 | .\history.o: ..\Eigenmath\history.cpp
2 | .\history.o: ..\Eigenmath\stdafx.h
3 | .\history.o: C:\Keil\ARM\ARMCC\bin\..\include\stdlib.h
4 | .\history.o: C:\Keil\ARM\ARMCC\bin\..\include\string.h
5 |
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/history.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/history.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/imag.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/imag.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/imag.d:
--------------------------------------------------------------------------------
1 | .\imag.o: ..\Eigenmath\imag.cpp
2 | .\imag.o: ..\Eigenmath\stdafx.h
3 | .\imag.o: ..\Eigenmath\defs.h
4 | .\imag.o: C:\Keil\ARM\ARMCC\bin\..\include\stdio.h
5 | .\imag.o: C:\Keil\ARM\ARMCC\bin\..\include\stdlib.h
6 | .\imag.o: C:\Keil\ARM\ARMCC\bin\..\include\ctype.h
7 | .\imag.o: C:\Keil\ARM\ARMCC\bin\..\include\string.h
8 | .\imag.o: C:\Keil\ARM\ARMCC\bin\..\include\setjmp.h
9 | .\imag.o: C:\Keil\ARM\ARMCC\bin\..\include\math.h
10 | .\imag.o: C:\Keil\ARM\ARMCC\bin\..\include\errno.h
11 | .\imag.o: ..\Eigenmath\prototypes.h
12 |
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/imag.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/imag.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/index.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/index.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/index.d:
--------------------------------------------------------------------------------
1 | .\index.o: ..\Eigenmath\index.cpp
2 | .\index.o: ..\Eigenmath\stdafx.h
3 | .\index.o: ..\Eigenmath\defs.h
4 | .\index.o: C:\Keil\ARM\ARMCC\bin\..\include\stdio.h
5 | .\index.o: C:\Keil\ARM\ARMCC\bin\..\include\stdlib.h
6 | .\index.o: C:\Keil\ARM\ARMCC\bin\..\include\ctype.h
7 | .\index.o: C:\Keil\ARM\ARMCC\bin\..\include\string.h
8 | .\index.o: C:\Keil\ARM\ARMCC\bin\..\include\setjmp.h
9 | .\index.o: C:\Keil\ARM\ARMCC\bin\..\include\math.h
10 | .\index.o: C:\Keil\ARM\ARMCC\bin\..\include\errno.h
11 | .\index.o: ..\Eigenmath\prototypes.h
12 |
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/index.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/index.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/init.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/init.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/init.d:
--------------------------------------------------------------------------------
1 | .\init.o: ..\Eigenmath\init.cpp
2 | .\init.o: ..\Eigenmath\stdafx.h
3 | .\init.o: ..\Eigenmath\defs.h
4 | .\init.o: C:\Keil\ARM\ARMCC\bin\..\include\stdio.h
5 | .\init.o: C:\Keil\ARM\ARMCC\bin\..\include\stdlib.h
6 | .\init.o: C:\Keil\ARM\ARMCC\bin\..\include\ctype.h
7 | .\init.o: C:\Keil\ARM\ARMCC\bin\..\include\string.h
8 | .\init.o: C:\Keil\ARM\ARMCC\bin\..\include\setjmp.h
9 | .\init.o: C:\Keil\ARM\ARMCC\bin\..\include\math.h
10 | .\init.o: C:\Keil\ARM\ARMCC\bin\..\include\errno.h
11 | .\init.o: ..\Eigenmath\prototypes.h
12 |
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/init.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/init.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/inner.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/inner.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/inner.d:
--------------------------------------------------------------------------------
1 | .\inner.o: ..\Eigenmath\inner.cpp
2 | .\inner.o: ..\Eigenmath\stdafx.h
3 | .\inner.o: ..\Eigenmath\defs.h
4 | .\inner.o: C:\Keil\ARM\ARMCC\bin\..\include\stdio.h
5 | .\inner.o: C:\Keil\ARM\ARMCC\bin\..\include\stdlib.h
6 | .\inner.o: C:\Keil\ARM\ARMCC\bin\..\include\ctype.h
7 | .\inner.o: C:\Keil\ARM\ARMCC\bin\..\include\string.h
8 | .\inner.o: C:\Keil\ARM\ARMCC\bin\..\include\setjmp.h
9 | .\inner.o: C:\Keil\ARM\ARMCC\bin\..\include\math.h
10 | .\inner.o: C:\Keil\ARM\ARMCC\bin\..\include\errno.h
11 | .\inner.o: ..\Eigenmath\prototypes.h
12 |
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/inner.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/inner.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/integral.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/integral.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/integral.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/integral.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/inv.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/inv.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/inv.d:
--------------------------------------------------------------------------------
1 | .\inv.o: ..\Eigenmath\inv.cpp
2 | .\inv.o: ..\Eigenmath\stdafx.h
3 | .\inv.o: ..\Eigenmath\defs.h
4 | .\inv.o: C:\Keil\ARM\ARMCC\bin\..\include\stdio.h
5 | .\inv.o: C:\Keil\ARM\ARMCC\bin\..\include\stdlib.h
6 | .\inv.o: C:\Keil\ARM\ARMCC\bin\..\include\ctype.h
7 | .\inv.o: C:\Keil\ARM\ARMCC\bin\..\include\string.h
8 | .\inv.o: C:\Keil\ARM\ARMCC\bin\..\include\setjmp.h
9 | .\inv.o: C:\Keil\ARM\ARMCC\bin\..\include\math.h
10 | .\inv.o: C:\Keil\ARM\ARMCC\bin\..\include\errno.h
11 | .\inv.o: ..\Eigenmath\prototypes.h
12 |
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/inv.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/inv.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/is.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/is.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/is.d:
--------------------------------------------------------------------------------
1 | .\is.o: ..\Eigenmath\is.cpp
2 | .\is.o: ..\Eigenmath\stdafx.h
3 | .\is.o: ..\Eigenmath\defs.h
4 | .\is.o: C:\Keil\ARM\ARMCC\bin\..\include\stdio.h
5 | .\is.o: C:\Keil\ARM\ARMCC\bin\..\include\stdlib.h
6 | .\is.o: C:\Keil\ARM\ARMCC\bin\..\include\ctype.h
7 | .\is.o: C:\Keil\ARM\ARMCC\bin\..\include\string.h
8 | .\is.o: C:\Keil\ARM\ARMCC\bin\..\include\setjmp.h
9 | .\is.o: C:\Keil\ARM\ARMCC\bin\..\include\math.h
10 | .\is.o: C:\Keil\ARM\ARMCC\bin\..\include\errno.h
11 | .\is.o: ..\Eigenmath\prototypes.h
12 |
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/is.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/is.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/isprime.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/isprime.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/isprime.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/isprime.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/itab.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/itab.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/itab.d:
--------------------------------------------------------------------------------
1 | .\itab.o: ..\Eigenmath\itab.cpp
2 | .\itab.o: ..\Eigenmath\stdafx.h
3 | .\itab.o: ..\Eigenmath\defs.h
4 | .\itab.o: C:\Keil\ARM\ARMCC\bin\..\include\stdio.h
5 | .\itab.o: C:\Keil\ARM\ARMCC\bin\..\include\stdlib.h
6 | .\itab.o: C:\Keil\ARM\ARMCC\bin\..\include\ctype.h
7 | .\itab.o: C:\Keil\ARM\ARMCC\bin\..\include\string.h
8 | .\itab.o: C:\Keil\ARM\ARMCC\bin\..\include\setjmp.h
9 | .\itab.o: C:\Keil\ARM\ARMCC\bin\..\include\math.h
10 | .\itab.o: C:\Keil\ARM\ARMCC\bin\..\include\errno.h
11 | .\itab.o: ..\Eigenmath\prototypes.h
12 |
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/itab.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/itab.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/itest.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/itest.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/itest.d:
--------------------------------------------------------------------------------
1 | .\itest.o: ..\Eigenmath\itest.cpp
2 | .\itest.o: ..\Eigenmath\stdafx.h
3 | .\itest.o: ..\Eigenmath\defs.h
4 | .\itest.o: C:\Keil\ARM\ARMCC\bin\..\include\stdio.h
5 | .\itest.o: C:\Keil\ARM\ARMCC\bin\..\include\stdlib.h
6 | .\itest.o: C:\Keil\ARM\ARMCC\bin\..\include\ctype.h
7 | .\itest.o: C:\Keil\ARM\ARMCC\bin\..\include\string.h
8 | .\itest.o: C:\Keil\ARM\ARMCC\bin\..\include\setjmp.h
9 | .\itest.o: C:\Keil\ARM\ARMCC\bin\..\include\math.h
10 | .\itest.o: C:\Keil\ARM\ARMCC\bin\..\include\errno.h
11 | .\itest.o: ..\Eigenmath\prototypes.h
12 |
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/itest.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/itest.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/key.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/key.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/key.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/key.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/laguerre.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/laguerre.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/laguerre.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/laguerre.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/laplace.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/laplace.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/laplace.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/laplace.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/lcm.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/lcm.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/lcm.d:
--------------------------------------------------------------------------------
1 | .\lcm.o: ..\Eigenmath\lcm.cpp
2 | .\lcm.o: ..\Eigenmath\stdafx.h
3 | .\lcm.o: ..\Eigenmath\defs.h
4 | .\lcm.o: C:\Keil\ARM\ARMCC\bin\..\include\stdio.h
5 | .\lcm.o: C:\Keil\ARM\ARMCC\bin\..\include\stdlib.h
6 | .\lcm.o: C:\Keil\ARM\ARMCC\bin\..\include\ctype.h
7 | .\lcm.o: C:\Keil\ARM\ARMCC\bin\..\include\string.h
8 | .\lcm.o: C:\Keil\ARM\ARMCC\bin\..\include\setjmp.h
9 | .\lcm.o: C:\Keil\ARM\ARMCC\bin\..\include\math.h
10 | .\lcm.o: C:\Keil\ARM\ARMCC\bin\..\include\errno.h
11 | .\lcm.o: ..\Eigenmath\prototypes.h
12 |
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/lcm.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/lcm.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/leading.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/leading.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/leading.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/leading.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/legendre.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/legendre.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/legendre.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/legendre.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/list.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/list.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/list.d:
--------------------------------------------------------------------------------
1 | .\list.o: ..\Eigenmath\list.cpp
2 | .\list.o: ..\Eigenmath\stdafx.h
3 | .\list.o: ..\Eigenmath\defs.h
4 | .\list.o: C:\Keil\ARM\ARMCC\bin\..\include\stdio.h
5 | .\list.o: C:\Keil\ARM\ARMCC\bin\..\include\stdlib.h
6 | .\list.o: C:\Keil\ARM\ARMCC\bin\..\include\ctype.h
7 | .\list.o: C:\Keil\ARM\ARMCC\bin\..\include\string.h
8 | .\list.o: C:\Keil\ARM\ARMCC\bin\..\include\setjmp.h
9 | .\list.o: C:\Keil\ARM\ARMCC\bin\..\include\math.h
10 | .\list.o: C:\Keil\ARM\ARMCC\bin\..\include\errno.h
11 | .\list.o: ..\Eigenmath\prototypes.h
12 |
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/list.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/list.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/log.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/log.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/log.d:
--------------------------------------------------------------------------------
1 | .\log.o: ..\Eigenmath\log.cpp
2 | .\log.o: ..\Eigenmath\stdafx.h
3 | .\log.o: ..\Eigenmath\defs.h
4 | .\log.o: C:\Keil\ARM\ARMCC\bin\..\include\stdio.h
5 | .\log.o: C:\Keil\ARM\ARMCC\bin\..\include\stdlib.h
6 | .\log.o: C:\Keil\ARM\ARMCC\bin\..\include\ctype.h
7 | .\log.o: C:\Keil\ARM\ARMCC\bin\..\include\string.h
8 | .\log.o: C:\Keil\ARM\ARMCC\bin\..\include\setjmp.h
9 | .\log.o: C:\Keil\ARM\ARMCC\bin\..\include\math.h
10 | .\log.o: C:\Keil\ARM\ARMCC\bin\..\include\errno.h
11 | .\log.o: ..\Eigenmath\prototypes.h
12 |
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/log.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/log.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/madd.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/madd.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/madd.d:
--------------------------------------------------------------------------------
1 | .\madd.o: ..\Eigenmath\madd.cpp
2 | .\madd.o: ..\Eigenmath\stdafx.h
3 | .\madd.o: ..\Eigenmath\defs.h
4 | .\madd.o: C:\Keil\ARM\ARMCC\bin\..\include\stdio.h
5 | .\madd.o: C:\Keil\ARM\ARMCC\bin\..\include\stdlib.h
6 | .\madd.o: C:\Keil\ARM\ARMCC\bin\..\include\ctype.h
7 | .\madd.o: C:\Keil\ARM\ARMCC\bin\..\include\string.h
8 | .\madd.o: C:\Keil\ARM\ARMCC\bin\..\include\setjmp.h
9 | .\madd.o: C:\Keil\ARM\ARMCC\bin\..\include\math.h
10 | .\madd.o: C:\Keil\ARM\ARMCC\bin\..\include\errno.h
11 | .\madd.o: ..\Eigenmath\prototypes.h
12 |
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/madd.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/madd.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/mag.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/mag.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/mag.d:
--------------------------------------------------------------------------------
1 | .\mag.o: ..\Eigenmath\mag.cpp
2 | .\mag.o: ..\Eigenmath\stdafx.h
3 | .\mag.o: ..\Eigenmath\defs.h
4 | .\mag.o: C:\Keil\ARM\ARMCC\bin\..\include\stdio.h
5 | .\mag.o: C:\Keil\ARM\ARMCC\bin\..\include\stdlib.h
6 | .\mag.o: C:\Keil\ARM\ARMCC\bin\..\include\ctype.h
7 | .\mag.o: C:\Keil\ARM\ARMCC\bin\..\include\string.h
8 | .\mag.o: C:\Keil\ARM\ARMCC\bin\..\include\setjmp.h
9 | .\mag.o: C:\Keil\ARM\ARMCC\bin\..\include\math.h
10 | .\mag.o: C:\Keil\ARM\ARMCC\bin\..\include\errno.h
11 | .\mag.o: ..\Eigenmath\prototypes.h
12 |
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/mag.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/mag.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/main.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/main.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/main.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/main.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/mcmp.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/mcmp.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/mcmp.d:
--------------------------------------------------------------------------------
1 | .\mcmp.o: ..\Eigenmath\mcmp.cpp
2 | .\mcmp.o: ..\Eigenmath\stdafx.h
3 | .\mcmp.o: ..\Eigenmath\defs.h
4 | .\mcmp.o: C:\Keil\ARM\ARMCC\bin\..\include\stdio.h
5 | .\mcmp.o: C:\Keil\ARM\ARMCC\bin\..\include\stdlib.h
6 | .\mcmp.o: C:\Keil\ARM\ARMCC\bin\..\include\ctype.h
7 | .\mcmp.o: C:\Keil\ARM\ARMCC\bin\..\include\string.h
8 | .\mcmp.o: C:\Keil\ARM\ARMCC\bin\..\include\setjmp.h
9 | .\mcmp.o: C:\Keil\ARM\ARMCC\bin\..\include\math.h
10 | .\mcmp.o: C:\Keil\ARM\ARMCC\bin\..\include\errno.h
11 | .\mcmp.o: ..\Eigenmath\prototypes.h
12 |
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/mcmp.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/mcmp.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/mfactor.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/mfactor.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/mfactor.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/mfactor.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/mgcd.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/mgcd.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/mgcd.d:
--------------------------------------------------------------------------------
1 | .\mgcd.o: ..\Eigenmath\mgcd.cpp
2 | .\mgcd.o: ..\Eigenmath\stdafx.h
3 | .\mgcd.o: ..\Eigenmath\defs.h
4 | .\mgcd.o: C:\Keil\ARM\ARMCC\bin\..\include\stdio.h
5 | .\mgcd.o: C:\Keil\ARM\ARMCC\bin\..\include\stdlib.h
6 | .\mgcd.o: C:\Keil\ARM\ARMCC\bin\..\include\ctype.h
7 | .\mgcd.o: C:\Keil\ARM\ARMCC\bin\..\include\string.h
8 | .\mgcd.o: C:\Keil\ARM\ARMCC\bin\..\include\setjmp.h
9 | .\mgcd.o: C:\Keil\ARM\ARMCC\bin\..\include\math.h
10 | .\mgcd.o: C:\Keil\ARM\ARMCC\bin\..\include\errno.h
11 | .\mgcd.o: ..\Eigenmath\prototypes.h
12 |
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/mgcd.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/mgcd.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/mini-test.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/mini-test.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/mini-test.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/mini-test.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/misc.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/misc.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/misc.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/misc.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/misce.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/misce.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/misce.d:
--------------------------------------------------------------------------------
1 | .\misce.o: ..\Eigenmath\misce.cpp
2 | .\misce.o: ..\Eigenmath\stdafx.h
3 | .\misce.o: ..\Eigenmath\defs.h
4 | .\misce.o: C:\Keil\ARM\ARMCC\bin\..\include\stdio.h
5 | .\misce.o: C:\Keil\ARM\ARMCC\bin\..\include\stdlib.h
6 | .\misce.o: C:\Keil\ARM\ARMCC\bin\..\include\ctype.h
7 | .\misce.o: C:\Keil\ARM\ARMCC\bin\..\include\string.h
8 | .\misce.o: C:\Keil\ARM\ARMCC\bin\..\include\setjmp.h
9 | .\misce.o: C:\Keil\ARM\ARMCC\bin\..\include\math.h
10 | .\misce.o: C:\Keil\ARM\ARMCC\bin\..\include\errno.h
11 | .\misce.o: ..\Eigenmath\prototypes.h
12 |
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/misce.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/misce.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/mmodpow.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/mmodpow.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/mmodpow.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/mmodpow.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/mmul.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/mmul.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/mmul.d:
--------------------------------------------------------------------------------
1 | .\mmul.o: ..\Eigenmath\mmul.cpp
2 | .\mmul.o: ..\Eigenmath\stdafx.h
3 | .\mmul.o: ..\Eigenmath\defs.h
4 | .\mmul.o: C:\Keil\ARM\ARMCC\bin\..\include\stdio.h
5 | .\mmul.o: C:\Keil\ARM\ARMCC\bin\..\include\stdlib.h
6 | .\mmul.o: C:\Keil\ARM\ARMCC\bin\..\include\ctype.h
7 | .\mmul.o: C:\Keil\ARM\ARMCC\bin\..\include\string.h
8 | .\mmul.o: C:\Keil\ARM\ARMCC\bin\..\include\setjmp.h
9 | .\mmul.o: C:\Keil\ARM\ARMCC\bin\..\include\math.h
10 | .\mmul.o: C:\Keil\ARM\ARMCC\bin\..\include\errno.h
11 | .\mmul.o: ..\Eigenmath\prototypes.h
12 |
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/mmul.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/mmul.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/mod.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/mod.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/mod.d:
--------------------------------------------------------------------------------
1 | .\mod.o: ..\Eigenmath\mod.cpp
2 | .\mod.o: ..\Eigenmath\stdafx.h
3 | .\mod.o: ..\Eigenmath\defs.h
4 | .\mod.o: C:\Keil\ARM\ARMCC\bin\..\include\stdio.h
5 | .\mod.o: C:\Keil\ARM\ARMCC\bin\..\include\stdlib.h
6 | .\mod.o: C:\Keil\ARM\ARMCC\bin\..\include\ctype.h
7 | .\mod.o: C:\Keil\ARM\ARMCC\bin\..\include\string.h
8 | .\mod.o: C:\Keil\ARM\ARMCC\bin\..\include\setjmp.h
9 | .\mod.o: C:\Keil\ARM\ARMCC\bin\..\include\math.h
10 | .\mod.o: C:\Keil\ARM\ARMCC\bin\..\include\errno.h
11 | .\mod.o: ..\Eigenmath\prototypes.h
12 |
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/mod.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/mod.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/mpow.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/mpow.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/mpow.d:
--------------------------------------------------------------------------------
1 | .\mpow.o: ..\Eigenmath\mpow.cpp
2 | .\mpow.o: ..\Eigenmath\stdafx.h
3 | .\mpow.o: ..\Eigenmath\defs.h
4 | .\mpow.o: C:\Keil\ARM\ARMCC\bin\..\include\stdio.h
5 | .\mpow.o: C:\Keil\ARM\ARMCC\bin\..\include\stdlib.h
6 | .\mpow.o: C:\Keil\ARM\ARMCC\bin\..\include\ctype.h
7 | .\mpow.o: C:\Keil\ARM\ARMCC\bin\..\include\string.h
8 | .\mpow.o: C:\Keil\ARM\ARMCC\bin\..\include\setjmp.h
9 | .\mpow.o: C:\Keil\ARM\ARMCC\bin\..\include\math.h
10 | .\mpow.o: C:\Keil\ARM\ARMCC\bin\..\include\errno.h
11 | .\mpow.o: ..\Eigenmath\prototypes.h
12 |
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/mpow.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/mpow.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/mprime.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/mprime.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/mprime.d:
--------------------------------------------------------------------------------
1 | .\mprime.o: ..\Eigenmath\mprime.cpp
2 | .\mprime.o: ..\Eigenmath\stdafx.h
3 | .\mprime.o: ..\Eigenmath\defs.h
4 | .\mprime.o: C:\Keil\ARM\ARMCC\bin\..\include\stdio.h
5 | .\mprime.o: C:\Keil\ARM\ARMCC\bin\..\include\stdlib.h
6 | .\mprime.o: C:\Keil\ARM\ARMCC\bin\..\include\ctype.h
7 | .\mprime.o: C:\Keil\ARM\ARMCC\bin\..\include\string.h
8 | .\mprime.o: C:\Keil\ARM\ARMCC\bin\..\include\setjmp.h
9 | .\mprime.o: C:\Keil\ARM\ARMCC\bin\..\include\math.h
10 | .\mprime.o: C:\Keil\ARM\ARMCC\bin\..\include\errno.h
11 | .\mprime.o: ..\Eigenmath\prototypes.h
12 |
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/mprime.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/mprime.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/mroot.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/mroot.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/mroot.d:
--------------------------------------------------------------------------------
1 | .\mroot.o: ..\Eigenmath\mroot.cpp
2 | .\mroot.o: ..\Eigenmath\stdafx.h
3 | .\mroot.o: ..\Eigenmath\defs.h
4 | .\mroot.o: C:\Keil\ARM\ARMCC\bin\..\include\stdio.h
5 | .\mroot.o: C:\Keil\ARM\ARMCC\bin\..\include\stdlib.h
6 | .\mroot.o: C:\Keil\ARM\ARMCC\bin\..\include\ctype.h
7 | .\mroot.o: C:\Keil\ARM\ARMCC\bin\..\include\string.h
8 | .\mroot.o: C:\Keil\ARM\ARMCC\bin\..\include\setjmp.h
9 | .\mroot.o: C:\Keil\ARM\ARMCC\bin\..\include\math.h
10 | .\mroot.o: C:\Keil\ARM\ARMCC\bin\..\include\errno.h
11 | .\mroot.o: ..\Eigenmath\prototypes.h
12 |
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/mroot.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/mroot.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/mscan.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/mscan.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/mscan.d:
--------------------------------------------------------------------------------
1 | .\mscan.o: ..\Eigenmath\mscan.cpp
2 | .\mscan.o: ..\Eigenmath\stdafx.h
3 | .\mscan.o: ..\Eigenmath\defs.h
4 | .\mscan.o: C:\Keil\ARM\ARMCC\bin\..\include\stdio.h
5 | .\mscan.o: C:\Keil\ARM\ARMCC\bin\..\include\stdlib.h
6 | .\mscan.o: C:\Keil\ARM\ARMCC\bin\..\include\ctype.h
7 | .\mscan.o: C:\Keil\ARM\ARMCC\bin\..\include\string.h
8 | .\mscan.o: C:\Keil\ARM\ARMCC\bin\..\include\setjmp.h
9 | .\mscan.o: C:\Keil\ARM\ARMCC\bin\..\include\math.h
10 | .\mscan.o: C:\Keil\ARM\ARMCC\bin\..\include\errno.h
11 | .\mscan.o: ..\Eigenmath\prototypes.h
12 |
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/mscan.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/mscan.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/msqrt.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/msqrt.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/msqrt.d:
--------------------------------------------------------------------------------
1 | .\msqrt.o: ..\Eigenmath\msqrt.cpp
2 | .\msqrt.o: ..\Eigenmath\stdafx.h
3 | .\msqrt.o: ..\Eigenmath\defs.h
4 | .\msqrt.o: C:\Keil\ARM\ARMCC\bin\..\include\stdio.h
5 | .\msqrt.o: C:\Keil\ARM\ARMCC\bin\..\include\stdlib.h
6 | .\msqrt.o: C:\Keil\ARM\ARMCC\bin\..\include\ctype.h
7 | .\msqrt.o: C:\Keil\ARM\ARMCC\bin\..\include\string.h
8 | .\msqrt.o: C:\Keil\ARM\ARMCC\bin\..\include\setjmp.h
9 | .\msqrt.o: C:\Keil\ARM\ARMCC\bin\..\include\math.h
10 | .\msqrt.o: C:\Keil\ARM\ARMCC\bin\..\include\errno.h
11 | .\msqrt.o: ..\Eigenmath\prototypes.h
12 |
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/msqrt.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/msqrt.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/mstr.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/mstr.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/mstr.d:
--------------------------------------------------------------------------------
1 | .\mstr.o: ..\Eigenmath\mstr.cpp
2 | .\mstr.o: ..\Eigenmath\stdafx.h
3 | .\mstr.o: ..\Eigenmath\defs.h
4 | .\mstr.o: C:\Keil\ARM\ARMCC\bin\..\include\stdio.h
5 | .\mstr.o: C:\Keil\ARM\ARMCC\bin\..\include\stdlib.h
6 | .\mstr.o: C:\Keil\ARM\ARMCC\bin\..\include\ctype.h
7 | .\mstr.o: C:\Keil\ARM\ARMCC\bin\..\include\string.h
8 | .\mstr.o: C:\Keil\ARM\ARMCC\bin\..\include\setjmp.h
9 | .\mstr.o: C:\Keil\ARM\ARMCC\bin\..\include\math.h
10 | .\mstr.o: C:\Keil\ARM\ARMCC\bin\..\include\errno.h
11 | .\mstr.o: ..\Eigenmath\prototypes.h
12 |
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/mstr.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/mstr.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/multiply.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/multiply.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/multiply.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/multiply.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/nroots.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/nroots.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/nroots.d:
--------------------------------------------------------------------------------
1 | .\nroots.o: ..\Eigenmath\nroots.cpp
2 | .\nroots.o: ..\Eigenmath\stdafx.h
3 | .\nroots.o: ..\Eigenmath\defs.h
4 | .\nroots.o: C:\Keil\ARM\ARMCC\bin\..\include\stdio.h
5 | .\nroots.o: C:\Keil\ARM\ARMCC\bin\..\include\stdlib.h
6 | .\nroots.o: C:\Keil\ARM\ARMCC\bin\..\include\ctype.h
7 | .\nroots.o: C:\Keil\ARM\ARMCC\bin\..\include\string.h
8 | .\nroots.o: C:\Keil\ARM\ARMCC\bin\..\include\setjmp.h
9 | .\nroots.o: C:\Keil\ARM\ARMCC\bin\..\include\math.h
10 | .\nroots.o: C:\Keil\ARM\ARMCC\bin\..\include\errno.h
11 | .\nroots.o: ..\Eigenmath\prototypes.h
12 |
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/nroots.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/nroots.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/numerator.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/numerator.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/numerator.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/numerator.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/outer.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/outer.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/outer.d:
--------------------------------------------------------------------------------
1 | .\outer.o: ..\Eigenmath\outer.cpp
2 | .\outer.o: ..\Eigenmath\stdafx.h
3 | .\outer.o: ..\Eigenmath\defs.h
4 | .\outer.o: C:\Keil\ARM\ARMCC\bin\..\include\stdio.h
5 | .\outer.o: C:\Keil\ARM\ARMCC\bin\..\include\stdlib.h
6 | .\outer.o: C:\Keil\ARM\ARMCC\bin\..\include\ctype.h
7 | .\outer.o: C:\Keil\ARM\ARMCC\bin\..\include\string.h
8 | .\outer.o: C:\Keil\ARM\ARMCC\bin\..\include\setjmp.h
9 | .\outer.o: C:\Keil\ARM\ARMCC\bin\..\include\math.h
10 | .\outer.o: C:\Keil\ARM\ARMCC\bin\..\include\errno.h
11 | .\outer.o: ..\Eigenmath\prototypes.h
12 |
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/outer.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/outer.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/partition.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/partition.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/partition.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/partition.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/pccon.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/pccon.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/pccon.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/pccon.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/polar.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/polar.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/polar.d:
--------------------------------------------------------------------------------
1 | .\polar.o: ..\Eigenmath\polar.cpp
2 | .\polar.o: ..\Eigenmath\stdafx.h
3 | .\polar.o: ..\Eigenmath\defs.h
4 | .\polar.o: C:\Keil\ARM\ARMCC\bin\..\include\stdio.h
5 | .\polar.o: C:\Keil\ARM\ARMCC\bin\..\include\stdlib.h
6 | .\polar.o: C:\Keil\ARM\ARMCC\bin\..\include\ctype.h
7 | .\polar.o: C:\Keil\ARM\ARMCC\bin\..\include\string.h
8 | .\polar.o: C:\Keil\ARM\ARMCC\bin\..\include\setjmp.h
9 | .\polar.o: C:\Keil\ARM\ARMCC\bin\..\include\math.h
10 | .\polar.o: C:\Keil\ARM\ARMCC\bin\..\include\errno.h
11 | .\polar.o: ..\Eigenmath\prototypes.h
12 |
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/polar.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/polar.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/pollard.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/pollard.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/pollard.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/pollard.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/power.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/power.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/power.d:
--------------------------------------------------------------------------------
1 | .\power.o: ..\Eigenmath\power.cpp
2 | .\power.o: ..\Eigenmath\stdafx.h
3 | .\power.o: ..\Eigenmath\defs.h
4 | .\power.o: C:\Keil\ARM\ARMCC\bin\..\include\stdio.h
5 | .\power.o: C:\Keil\ARM\ARMCC\bin\..\include\stdlib.h
6 | .\power.o: C:\Keil\ARM\ARMCC\bin\..\include\ctype.h
7 | .\power.o: C:\Keil\ARM\ARMCC\bin\..\include\string.h
8 | .\power.o: C:\Keil\ARM\ARMCC\bin\..\include\setjmp.h
9 | .\power.o: C:\Keil\ARM\ARMCC\bin\..\include\math.h
10 | .\power.o: C:\Keil\ARM\ARMCC\bin\..\include\errno.h
11 | .\power.o: ..\Eigenmath\prototypes.h
12 |
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/power.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/power.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/powerman.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/powerman.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/powerman.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/powerman.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/prime.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/prime.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/prime.d:
--------------------------------------------------------------------------------
1 | .\prime.o: ..\Eigenmath\prime.cpp
2 | .\prime.o: ..\Eigenmath\stdafx.h
3 | .\prime.o: ..\Eigenmath\defs.h
4 | .\prime.o: C:\Keil\ARM\ARMCC\bin\..\include\stdio.h
5 | .\prime.o: C:\Keil\ARM\ARMCC\bin\..\include\stdlib.h
6 | .\prime.o: C:\Keil\ARM\ARMCC\bin\..\include\ctype.h
7 | .\prime.o: C:\Keil\ARM\ARMCC\bin\..\include\string.h
8 | .\prime.o: C:\Keil\ARM\ARMCC\bin\..\include\setjmp.h
9 | .\prime.o: C:\Keil\ARM\ARMCC\bin\..\include\math.h
10 | .\prime.o: C:\Keil\ARM\ARMCC\bin\..\include\errno.h
11 | .\prime.o: ..\Eigenmath\prototypes.h
12 |
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/prime.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/prime.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/primetab.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/primetab.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/primetab.d:
--------------------------------------------------------------------------------
1 | .\primetab.o: ..\Eigenmath\primetab.cpp
2 | .\primetab.o: ..\Eigenmath\stdafx.h
3 |
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/primetab.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/primetab.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/print.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/print.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/print.d:
--------------------------------------------------------------------------------
1 | .\print.o: ..\Eigenmath\print.cpp
2 | .\print.o: ..\Eigenmath\stdafx.h
3 | .\print.o: ..\Eigenmath\defs.h
4 | .\print.o: C:\Keil\ARM\ARMCC\bin\..\include\stdio.h
5 | .\print.o: C:\Keil\ARM\ARMCC\bin\..\include\stdlib.h
6 | .\print.o: C:\Keil\ARM\ARMCC\bin\..\include\ctype.h
7 | .\print.o: C:\Keil\ARM\ARMCC\bin\..\include\string.h
8 | .\print.o: C:\Keil\ARM\ARMCC\bin\..\include\setjmp.h
9 | .\print.o: C:\Keil\ARM\ARMCC\bin\..\include\math.h
10 | .\print.o: C:\Keil\ARM\ARMCC\bin\..\include\errno.h
11 | .\print.o: ..\Eigenmath\prototypes.h
12 |
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/print.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/print.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/product.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/product.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/product.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/product.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/qadd.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/qadd.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/qadd.d:
--------------------------------------------------------------------------------
1 | .\qadd.o: ..\Eigenmath\qadd.cpp
2 | .\qadd.o: ..\Eigenmath\stdafx.h
3 | .\qadd.o: ..\Eigenmath\defs.h
4 | .\qadd.o: C:\Keil\ARM\ARMCC\bin\..\include\stdio.h
5 | .\qadd.o: C:\Keil\ARM\ARMCC\bin\..\include\stdlib.h
6 | .\qadd.o: C:\Keil\ARM\ARMCC\bin\..\include\ctype.h
7 | .\qadd.o: C:\Keil\ARM\ARMCC\bin\..\include\string.h
8 | .\qadd.o: C:\Keil\ARM\ARMCC\bin\..\include\setjmp.h
9 | .\qadd.o: C:\Keil\ARM\ARMCC\bin\..\include\math.h
10 | .\qadd.o: C:\Keil\ARM\ARMCC\bin\..\include\errno.h
11 | .\qadd.o: ..\Eigenmath\prototypes.h
12 |
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/qadd.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/qadd.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/qdiv.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/qdiv.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/qdiv.d:
--------------------------------------------------------------------------------
1 | .\qdiv.o: ..\Eigenmath\qdiv.cpp
2 | .\qdiv.o: ..\Eigenmath\stdafx.h
3 | .\qdiv.o: ..\Eigenmath\defs.h
4 | .\qdiv.o: C:\Keil\ARM\ARMCC\bin\..\include\stdio.h
5 | .\qdiv.o: C:\Keil\ARM\ARMCC\bin\..\include\stdlib.h
6 | .\qdiv.o: C:\Keil\ARM\ARMCC\bin\..\include\ctype.h
7 | .\qdiv.o: C:\Keil\ARM\ARMCC\bin\..\include\string.h
8 | .\qdiv.o: C:\Keil\ARM\ARMCC\bin\..\include\setjmp.h
9 | .\qdiv.o: C:\Keil\ARM\ARMCC\bin\..\include\math.h
10 | .\qdiv.o: C:\Keil\ARM\ARMCC\bin\..\include\errno.h
11 | .\qdiv.o: ..\Eigenmath\prototypes.h
12 |
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/qdiv.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/qdiv.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/qmul.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/qmul.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/qmul.d:
--------------------------------------------------------------------------------
1 | .\qmul.o: ..\Eigenmath\qmul.cpp
2 | .\qmul.o: ..\Eigenmath\stdafx.h
3 | .\qmul.o: ..\Eigenmath\defs.h
4 | .\qmul.o: C:\Keil\ARM\ARMCC\bin\..\include\stdio.h
5 | .\qmul.o: C:\Keil\ARM\ARMCC\bin\..\include\stdlib.h
6 | .\qmul.o: C:\Keil\ARM\ARMCC\bin\..\include\ctype.h
7 | .\qmul.o: C:\Keil\ARM\ARMCC\bin\..\include\string.h
8 | .\qmul.o: C:\Keil\ARM\ARMCC\bin\..\include\setjmp.h
9 | .\qmul.o: C:\Keil\ARM\ARMCC\bin\..\include\math.h
10 | .\qmul.o: C:\Keil\ARM\ARMCC\bin\..\include\errno.h
11 | .\qmul.o: ..\Eigenmath\prototypes.h
12 |
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/qmul.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/qmul.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/qpow.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/qpow.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/qpow.d:
--------------------------------------------------------------------------------
1 | .\qpow.o: ..\Eigenmath\qpow.cpp
2 | .\qpow.o: ..\Eigenmath\stdafx.h
3 | .\qpow.o: ..\Eigenmath\defs.h
4 | .\qpow.o: C:\Keil\ARM\ARMCC\bin\..\include\stdio.h
5 | .\qpow.o: C:\Keil\ARM\ARMCC\bin\..\include\stdlib.h
6 | .\qpow.o: C:\Keil\ARM\ARMCC\bin\..\include\ctype.h
7 | .\qpow.o: C:\Keil\ARM\ARMCC\bin\..\include\string.h
8 | .\qpow.o: C:\Keil\ARM\ARMCC\bin\..\include\setjmp.h
9 | .\qpow.o: C:\Keil\ARM\ARMCC\bin\..\include\math.h
10 | .\qpow.o: C:\Keil\ARM\ARMCC\bin\..\include\errno.h
11 | .\qpow.o: ..\Eigenmath\prototypes.h
12 |
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/qpow.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/qpow.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/qsub.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/qsub.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/qsub.d:
--------------------------------------------------------------------------------
1 | .\qsub.o: ..\Eigenmath\qsub.cpp
2 | .\qsub.o: ..\Eigenmath\stdafx.h
3 | .\qsub.o: ..\Eigenmath\defs.h
4 | .\qsub.o: C:\Keil\ARM\ARMCC\bin\..\include\stdio.h
5 | .\qsub.o: C:\Keil\ARM\ARMCC\bin\..\include\stdlib.h
6 | .\qsub.o: C:\Keil\ARM\ARMCC\bin\..\include\ctype.h
7 | .\qsub.o: C:\Keil\ARM\ARMCC\bin\..\include\string.h
8 | .\qsub.o: C:\Keil\ARM\ARMCC\bin\..\include\setjmp.h
9 | .\qsub.o: C:\Keil\ARM\ARMCC\bin\..\include\math.h
10 | .\qsub.o: C:\Keil\ARM\ARMCC\bin\..\include\errno.h
11 | .\qsub.o: ..\Eigenmath\prototypes.h
12 |
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/qsub.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/qsub.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/quickfactor.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/quickfactor.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/quickfactor.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/quickfactor.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/quotient.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/quotient.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/quotient.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/quotient.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/rationalize.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/rationalize.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/rationalize.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/rationalize.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/real.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/real.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/real.d:
--------------------------------------------------------------------------------
1 | .\real.o: ..\Eigenmath\real.cpp
2 | .\real.o: ..\Eigenmath\stdafx.h
3 | .\real.o: ..\Eigenmath\defs.h
4 | .\real.o: C:\Keil\ARM\ARMCC\bin\..\include\stdio.h
5 | .\real.o: C:\Keil\ARM\ARMCC\bin\..\include\stdlib.h
6 | .\real.o: C:\Keil\ARM\ARMCC\bin\..\include\ctype.h
7 | .\real.o: C:\Keil\ARM\ARMCC\bin\..\include\string.h
8 | .\real.o: C:\Keil\ARM\ARMCC\bin\..\include\setjmp.h
9 | .\real.o: C:\Keil\ARM\ARMCC\bin\..\include\math.h
10 | .\real.o: C:\Keil\ARM\ARMCC\bin\..\include\errno.h
11 | .\real.o: ..\Eigenmath\prototypes.h
12 |
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/real.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/real.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/rect.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/rect.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/rect.d:
--------------------------------------------------------------------------------
1 | .\rect.o: ..\Eigenmath\rect.cpp
2 | .\rect.o: ..\Eigenmath\stdafx.h
3 | .\rect.o: ..\Eigenmath\defs.h
4 | .\rect.o: C:\Keil\ARM\ARMCC\bin\..\include\stdio.h
5 | .\rect.o: C:\Keil\ARM\ARMCC\bin\..\include\stdlib.h
6 | .\rect.o: C:\Keil\ARM\ARMCC\bin\..\include\ctype.h
7 | .\rect.o: C:\Keil\ARM\ARMCC\bin\..\include\string.h
8 | .\rect.o: C:\Keil\ARM\ARMCC\bin\..\include\setjmp.h
9 | .\rect.o: C:\Keil\ARM\ARMCC\bin\..\include\math.h
10 | .\rect.o: C:\Keil\ARM\ARMCC\bin\..\include\errno.h
11 | .\rect.o: ..\Eigenmath\prototypes.h
12 |
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/rect.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/rect.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/rewrite.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/rewrite.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/rewrite.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/rewrite.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/roots.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/roots.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/roots.d:
--------------------------------------------------------------------------------
1 | .\roots.o: ..\Eigenmath\roots.cpp
2 | .\roots.o: ..\Eigenmath\stdafx.h
3 | .\roots.o: ..\Eigenmath\defs.h
4 | .\roots.o: C:\Keil\ARM\ARMCC\bin\..\include\stdio.h
5 | .\roots.o: C:\Keil\ARM\ARMCC\bin\..\include\stdlib.h
6 | .\roots.o: C:\Keil\ARM\ARMCC\bin\..\include\ctype.h
7 | .\roots.o: C:\Keil\ARM\ARMCC\bin\..\include\string.h
8 | .\roots.o: C:\Keil\ARM\ARMCC\bin\..\include\setjmp.h
9 | .\roots.o: C:\Keil\ARM\ARMCC\bin\..\include\math.h
10 | .\roots.o: C:\Keil\ARM\ARMCC\bin\..\include\errno.h
11 | .\roots.o: ..\Eigenmath\prototypes.h
12 |
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/roots.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/roots.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/rtc.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/rtc.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/rtc.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/rtc.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/run.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/run.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/run.d:
--------------------------------------------------------------------------------
1 | .\run.o: ..\Eigenmath\run.cpp
2 | .\run.o: ..\Eigenmath\stdafx.h
3 | .\run.o: ..\Eigenmath\defs.h
4 | .\run.o: C:\Keil\ARM\ARMCC\bin\..\include\stdio.h
5 | .\run.o: C:\Keil\ARM\ARMCC\bin\..\include\stdlib.h
6 | .\run.o: C:\Keil\ARM\ARMCC\bin\..\include\ctype.h
7 | .\run.o: C:\Keil\ARM\ARMCC\bin\..\include\string.h
8 | .\run.o: C:\Keil\ARM\ARMCC\bin\..\include\setjmp.h
9 | .\run.o: C:\Keil\ARM\ARMCC\bin\..\include\math.h
10 | .\run.o: C:\Keil\ARM\ARMCC\bin\..\include\errno.h
11 | .\run.o: ..\Eigenmath\prototypes.h
12 |
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/run.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/run.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/scan.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/scan.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/scan.d:
--------------------------------------------------------------------------------
1 | .\scan.o: ..\Eigenmath\scan.cpp
2 | .\scan.o: ..\Eigenmath\stdafx.h
3 | .\scan.o: ..\Eigenmath\defs.h
4 | .\scan.o: C:\Keil\ARM\ARMCC\bin\..\include\stdio.h
5 | .\scan.o: C:\Keil\ARM\ARMCC\bin\..\include\stdlib.h
6 | .\scan.o: C:\Keil\ARM\ARMCC\bin\..\include\ctype.h
7 | .\scan.o: C:\Keil\ARM\ARMCC\bin\..\include\string.h
8 | .\scan.o: C:\Keil\ARM\ARMCC\bin\..\include\setjmp.h
9 | .\scan.o: C:\Keil\ARM\ARMCC\bin\..\include\math.h
10 | .\scan.o: C:\Keil\ARM\ARMCC\bin\..\include\errno.h
11 | .\scan.o: ..\Eigenmath\prototypes.h
12 |
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/scan.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/scan.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/sd_fs_app.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/sd_fs_app.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/sd_fs_app.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/sd_fs_app.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/sdcard.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/sdcard.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/sdcard.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/sdcard.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/selftest.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/selftest.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/selftest.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/selftest.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/sgn.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/sgn.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/sgn.d:
--------------------------------------------------------------------------------
1 | .\sgn.o: ..\Eigenmath\sgn.cpp
2 | .\sgn.o: ..\Eigenmath\stdafx.h
3 | .\sgn.o: ..\Eigenmath\defs.h
4 | .\sgn.o: C:\Keil\ARM\ARMCC\bin\..\include\stdio.h
5 | .\sgn.o: C:\Keil\ARM\ARMCC\bin\..\include\stdlib.h
6 | .\sgn.o: C:\Keil\ARM\ARMCC\bin\..\include\ctype.h
7 | .\sgn.o: C:\Keil\ARM\ARMCC\bin\..\include\string.h
8 | .\sgn.o: C:\Keil\ARM\ARMCC\bin\..\include\setjmp.h
9 | .\sgn.o: C:\Keil\ARM\ARMCC\bin\..\include\math.h
10 | .\sgn.o: C:\Keil\ARM\ARMCC\bin\..\include\errno.h
11 | .\sgn.o: ..\Eigenmath\prototypes.h
12 |
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/sgn.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/sgn.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/simfac.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/simfac.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/simfac.d:
--------------------------------------------------------------------------------
1 | .\simfac.o: ..\Eigenmath\simfac.cpp
2 | .\simfac.o: ..\Eigenmath\stdafx.h
3 | .\simfac.o: ..\Eigenmath\defs.h
4 | .\simfac.o: C:\Keil\ARM\ARMCC\bin\..\include\stdio.h
5 | .\simfac.o: C:\Keil\ARM\ARMCC\bin\..\include\stdlib.h
6 | .\simfac.o: C:\Keil\ARM\ARMCC\bin\..\include\ctype.h
7 | .\simfac.o: C:\Keil\ARM\ARMCC\bin\..\include\string.h
8 | .\simfac.o: C:\Keil\ARM\ARMCC\bin\..\include\setjmp.h
9 | .\simfac.o: C:\Keil\ARM\ARMCC\bin\..\include\math.h
10 | .\simfac.o: C:\Keil\ARM\ARMCC\bin\..\include\errno.h
11 | .\simfac.o: ..\Eigenmath\prototypes.h
12 |
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/simfac.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/simfac.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/simplify.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/simplify.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/simplify.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/simplify.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/sin.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/sin.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/sin.d:
--------------------------------------------------------------------------------
1 | .\sin.o: ..\Eigenmath\sin.cpp
2 | .\sin.o: ..\Eigenmath\stdafx.h
3 | .\sin.o: ..\Eigenmath\defs.h
4 | .\sin.o: C:\Keil\ARM\ARMCC\bin\..\include\stdio.h
5 | .\sin.o: C:\Keil\ARM\ARMCC\bin\..\include\stdlib.h
6 | .\sin.o: C:\Keil\ARM\ARMCC\bin\..\include\ctype.h
7 | .\sin.o: C:\Keil\ARM\ARMCC\bin\..\include\string.h
8 | .\sin.o: C:\Keil\ARM\ARMCC\bin\..\include\setjmp.h
9 | .\sin.o: C:\Keil\ARM\ARMCC\bin\..\include\math.h
10 | .\sin.o: C:\Keil\ARM\ARMCC\bin\..\include\errno.h
11 | .\sin.o: ..\Eigenmath\prototypes.h
12 |
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/sin.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/sin.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/sinh.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/sinh.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/sinh.d:
--------------------------------------------------------------------------------
1 | .\sinh.o: ..\Eigenmath\sinh.cpp
2 | .\sinh.o: ..\Eigenmath\stdafx.h
3 | .\sinh.o: ..\Eigenmath\defs.h
4 | .\sinh.o: C:\Keil\ARM\ARMCC\bin\..\include\stdio.h
5 | .\sinh.o: C:\Keil\ARM\ARMCC\bin\..\include\stdlib.h
6 | .\sinh.o: C:\Keil\ARM\ARMCC\bin\..\include\ctype.h
7 | .\sinh.o: C:\Keil\ARM\ARMCC\bin\..\include\string.h
8 | .\sinh.o: C:\Keil\ARM\ARMCC\bin\..\include\setjmp.h
9 | .\sinh.o: C:\Keil\ARM\ARMCC\bin\..\include\math.h
10 | .\sinh.o: C:\Keil\ARM\ARMCC\bin\..\include\errno.h
11 | .\sinh.o: ..\Eigenmath\prototypes.h
12 |
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/sinh.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/sinh.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/spiflash.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/spiflash.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/spiflash.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/spiflash.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/stack.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/stack.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/stack.d:
--------------------------------------------------------------------------------
1 | .\stack.o: ..\Eigenmath\stack.cpp
2 | .\stack.o: ..\Eigenmath\stdafx.h
3 | .\stack.o: ..\Eigenmath\defs.h
4 | .\stack.o: C:\Keil\ARM\ARMCC\bin\..\include\stdio.h
5 | .\stack.o: C:\Keil\ARM\ARMCC\bin\..\include\stdlib.h
6 | .\stack.o: C:\Keil\ARM\ARMCC\bin\..\include\ctype.h
7 | .\stack.o: C:\Keil\ARM\ARMCC\bin\..\include\string.h
8 | .\stack.o: C:\Keil\ARM\ARMCC\bin\..\include\setjmp.h
9 | .\stack.o: C:\Keil\ARM\ARMCC\bin\..\include\math.h
10 | .\stack.o: C:\Keil\ARM\ARMCC\bin\..\include\errno.h
11 | .\stack.o: ..\Eigenmath\prototypes.h
12 |
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/stack.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/stack.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/startup_stm32f4xx.d:
--------------------------------------------------------------------------------
1 | .\startup_stm32f4xx.o: ..\Startup\MDK-ARM\startup_stm32f4xx.s
2 |
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/startup_stm32f4xx.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/startup_stm32f4xx.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/stm32f4xx_adc.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/stm32f4xx_adc.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/stm32f4xx_adc.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/stm32f4xx_adc.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/stm32f4xx_can.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/stm32f4xx_can.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/stm32f4xx_can.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/stm32f4xx_can.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/stm32f4xx_crc.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/stm32f4xx_crc.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/stm32f4xx_crc.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/stm32f4xx_crc.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/stm32f4xx_cryp.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/stm32f4xx_cryp.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/stm32f4xx_cryp.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/stm32f4xx_cryp.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/stm32f4xx_cryp_aes.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/stm32f4xx_cryp_aes.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/stm32f4xx_cryp_aes.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/stm32f4xx_cryp_aes.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/stm32f4xx_cryp_des.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/stm32f4xx_cryp_des.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/stm32f4xx_cryp_des.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/stm32f4xx_cryp_des.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/stm32f4xx_cryp_tdes.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/stm32f4xx_cryp_tdes.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/stm32f4xx_cryp_tdes.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/stm32f4xx_cryp_tdes.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/stm32f4xx_dac.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/stm32f4xx_dac.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/stm32f4xx_dac.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/stm32f4xx_dac.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/stm32f4xx_dbgmcu.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/stm32f4xx_dbgmcu.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/stm32f4xx_dbgmcu.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/stm32f4xx_dbgmcu.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/stm32f4xx_dcmi.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/stm32f4xx_dcmi.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/stm32f4xx_dcmi.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/stm32f4xx_dcmi.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/stm32f4xx_dma.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/stm32f4xx_dma.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/stm32f4xx_dma.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/stm32f4xx_dma.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/stm32f4xx_exti.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/stm32f4xx_exti.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/stm32f4xx_exti.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/stm32f4xx_exti.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/stm32f4xx_flash.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/stm32f4xx_flash.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/stm32f4xx_flash.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/stm32f4xx_flash.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/stm32f4xx_fsmc.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/stm32f4xx_fsmc.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/stm32f4xx_fsmc.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/stm32f4xx_fsmc.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/stm32f4xx_gpio.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/stm32f4xx_gpio.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/stm32f4xx_gpio.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/stm32f4xx_gpio.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/stm32f4xx_hash.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/stm32f4xx_hash.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/stm32f4xx_hash.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/stm32f4xx_hash.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/stm32f4xx_hash_md5.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/stm32f4xx_hash_md5.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/stm32f4xx_hash_md5.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/stm32f4xx_hash_md5.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/stm32f4xx_hash_sha1.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/stm32f4xx_hash_sha1.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/stm32f4xx_hash_sha1.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/stm32f4xx_hash_sha1.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/stm32f4xx_i2c.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/stm32f4xx_i2c.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/stm32f4xx_i2c.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/stm32f4xx_i2c.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/stm32f4xx_it.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/stm32f4xx_it.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/stm32f4xx_it.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/stm32f4xx_it.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/stm32f4xx_iwdg.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/stm32f4xx_iwdg.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/stm32f4xx_iwdg.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/stm32f4xx_iwdg.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/stm32f4xx_pwr.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/stm32f4xx_pwr.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/stm32f4xx_pwr.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/stm32f4xx_pwr.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/stm32f4xx_rcc.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/stm32f4xx_rcc.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/stm32f4xx_rcc.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/stm32f4xx_rcc.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/stm32f4xx_rng.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/stm32f4xx_rng.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/stm32f4xx_rng.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/stm32f4xx_rng.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/stm32f4xx_rtc.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/stm32f4xx_rtc.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/stm32f4xx_rtc.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/stm32f4xx_rtc.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/stm32f4xx_sdio.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/stm32f4xx_sdio.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/stm32f4xx_sdio.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/stm32f4xx_sdio.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/stm32f4xx_spi.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/stm32f4xx_spi.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/stm32f4xx_spi.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/stm32f4xx_spi.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/stm32f4xx_syscfg.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/stm32f4xx_syscfg.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/stm32f4xx_syscfg.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/stm32f4xx_syscfg.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/stm32f4xx_tim.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/stm32f4xx_tim.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/stm32f4xx_tim.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/stm32f4xx_tim.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/stm32f4xx_usart.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/stm32f4xx_usart.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/stm32f4xx_usart.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/stm32f4xx_usart.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/stm32f4xx_wwdg.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/stm32f4xx_wwdg.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/stm32f4xx_wwdg.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/stm32f4xx_wwdg.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/stn.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/stn.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/stn.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/stn.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/subst.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/subst.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/subst.d:
--------------------------------------------------------------------------------
1 | .\subst.o: ..\Eigenmath\subst.cpp
2 | .\subst.o: ..\Eigenmath\stdafx.h
3 | .\subst.o: ..\Eigenmath\defs.h
4 | .\subst.o: C:\Keil\ARM\ARMCC\bin\..\include\stdio.h
5 | .\subst.o: C:\Keil\ARM\ARMCC\bin\..\include\stdlib.h
6 | .\subst.o: C:\Keil\ARM\ARMCC\bin\..\include\ctype.h
7 | .\subst.o: C:\Keil\ARM\ARMCC\bin\..\include\string.h
8 | .\subst.o: C:\Keil\ARM\ARMCC\bin\..\include\setjmp.h
9 | .\subst.o: C:\Keil\ARM\ARMCC\bin\..\include\math.h
10 | .\subst.o: C:\Keil\ARM\ARMCC\bin\..\include\errno.h
11 | .\subst.o: ..\Eigenmath\prototypes.h
12 |
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/subst.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/subst.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/sum.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/sum.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/sum.d:
--------------------------------------------------------------------------------
1 | .\sum.o: ..\Eigenmath\sum.cpp
2 | .\sum.o: ..\Eigenmath\stdafx.h
3 | .\sum.o: ..\Eigenmath\defs.h
4 | .\sum.o: C:\Keil\ARM\ARMCC\bin\..\include\stdio.h
5 | .\sum.o: C:\Keil\ARM\ARMCC\bin\..\include\stdlib.h
6 | .\sum.o: C:\Keil\ARM\ARMCC\bin\..\include\ctype.h
7 | .\sum.o: C:\Keil\ARM\ARMCC\bin\..\include\string.h
8 | .\sum.o: C:\Keil\ARM\ARMCC\bin\..\include\setjmp.h
9 | .\sum.o: C:\Keil\ARM\ARMCC\bin\..\include\math.h
10 | .\sum.o: C:\Keil\ARM\ARMCC\bin\..\include\errno.h
11 | .\sum.o: ..\Eigenmath\prototypes.h
12 |
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/sum.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/sum.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/symbol.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/symbol.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/symbol.d:
--------------------------------------------------------------------------------
1 | .\symbol.o: ..\Eigenmath\symbol.cpp
2 | .\symbol.o: ..\Eigenmath\stdafx.h
3 | .\symbol.o: ..\Eigenmath\defs.h
4 | .\symbol.o: C:\Keil\ARM\ARMCC\bin\..\include\stdio.h
5 | .\symbol.o: C:\Keil\ARM\ARMCC\bin\..\include\stdlib.h
6 | .\symbol.o: C:\Keil\ARM\ARMCC\bin\..\include\ctype.h
7 | .\symbol.o: C:\Keil\ARM\ARMCC\bin\..\include\string.h
8 | .\symbol.o: C:\Keil\ARM\ARMCC\bin\..\include\setjmp.h
9 | .\symbol.o: C:\Keil\ARM\ARMCC\bin\..\include\math.h
10 | .\symbol.o: C:\Keil\ARM\ARMCC\bin\..\include\errno.h
11 | .\symbol.o: ..\Eigenmath\prototypes.h
12 |
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/symbol.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/symbol.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/system_stm32f4xx.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/system_stm32f4xx.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/system_stm32f4xx.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/system_stm32f4xx.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/tan.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/tan.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/tan.d:
--------------------------------------------------------------------------------
1 | .\tan.o: ..\Eigenmath\tan.cpp
2 | .\tan.o: ..\Eigenmath\stdafx.h
3 | .\tan.o: ..\Eigenmath\defs.h
4 | .\tan.o: C:\Keil\ARM\ARMCC\bin\..\include\stdio.h
5 | .\tan.o: C:\Keil\ARM\ARMCC\bin\..\include\stdlib.h
6 | .\tan.o: C:\Keil\ARM\ARMCC\bin\..\include\ctype.h
7 | .\tan.o: C:\Keil\ARM\ARMCC\bin\..\include\string.h
8 | .\tan.o: C:\Keil\ARM\ARMCC\bin\..\include\setjmp.h
9 | .\tan.o: C:\Keil\ARM\ARMCC\bin\..\include\math.h
10 | .\tan.o: C:\Keil\ARM\ARMCC\bin\..\include\errno.h
11 | .\tan.o: ..\Eigenmath\prototypes.h
12 |
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/tan.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/tan.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/tanh.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/tanh.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/tanh.d:
--------------------------------------------------------------------------------
1 | .\tanh.o: ..\Eigenmath\tanh.cpp
2 | .\tanh.o: ..\Eigenmath\stdafx.h
3 | .\tanh.o: ..\Eigenmath\defs.h
4 | .\tanh.o: C:\Keil\ARM\ARMCC\bin\..\include\stdio.h
5 | .\tanh.o: C:\Keil\ARM\ARMCC\bin\..\include\stdlib.h
6 | .\tanh.o: C:\Keil\ARM\ARMCC\bin\..\include\ctype.h
7 | .\tanh.o: C:\Keil\ARM\ARMCC\bin\..\include\string.h
8 | .\tanh.o: C:\Keil\ARM\ARMCC\bin\..\include\setjmp.h
9 | .\tanh.o: C:\Keil\ARM\ARMCC\bin\..\include\math.h
10 | .\tanh.o: C:\Keil\ARM\ARMCC\bin\..\include\errno.h
11 | .\tanh.o: ..\Eigenmath\prototypes.h
12 |
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/tanh.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/tanh.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/taylor.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/taylor.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/taylor.d:
--------------------------------------------------------------------------------
1 | .\taylor.o: ..\Eigenmath\taylor.cpp
2 | .\taylor.o: ..\Eigenmath\stdafx.h
3 | .\taylor.o: ..\Eigenmath\defs.h
4 | .\taylor.o: C:\Keil\ARM\ARMCC\bin\..\include\stdio.h
5 | .\taylor.o: C:\Keil\ARM\ARMCC\bin\..\include\stdlib.h
6 | .\taylor.o: C:\Keil\ARM\ARMCC\bin\..\include\ctype.h
7 | .\taylor.o: C:\Keil\ARM\ARMCC\bin\..\include\string.h
8 | .\taylor.o: C:\Keil\ARM\ARMCC\bin\..\include\setjmp.h
9 | .\taylor.o: C:\Keil\ARM\ARMCC\bin\..\include\math.h
10 | .\taylor.o: C:\Keil\ARM\ARMCC\bin\..\include\errno.h
11 | .\taylor.o: ..\Eigenmath\prototypes.h
12 |
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/taylor.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/taylor.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/tensor.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/tensor.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/tensor.d:
--------------------------------------------------------------------------------
1 | .\tensor.o: ..\Eigenmath\tensor.cpp
2 | .\tensor.o: ..\Eigenmath\stdafx.h
3 | .\tensor.o: ..\Eigenmath\defs.h
4 | .\tensor.o: C:\Keil\ARM\ARMCC\bin\..\include\stdio.h
5 | .\tensor.o: C:\Keil\ARM\ARMCC\bin\..\include\stdlib.h
6 | .\tensor.o: C:\Keil\ARM\ARMCC\bin\..\include\ctype.h
7 | .\tensor.o: C:\Keil\ARM\ARMCC\bin\..\include\string.h
8 | .\tensor.o: C:\Keil\ARM\ARMCC\bin\..\include\setjmp.h
9 | .\tensor.o: C:\Keil\ARM\ARMCC\bin\..\include\math.h
10 | .\tensor.o: C:\Keil\ARM\ARMCC\bin\..\include\errno.h
11 | .\tensor.o: ..\Eigenmath\prototypes.h
12 |
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/tensor.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/tensor.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/test.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/test.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/test.d:
--------------------------------------------------------------------------------
1 | .\test.o: ..\Eigenmath\test.cpp
2 | .\test.o: ..\Eigenmath\stdafx.h
3 | .\test.o: ..\Eigenmath\defs.h
4 | .\test.o: C:\Keil\ARM\ARMCC\bin\..\include\stdio.h
5 | .\test.o: C:\Keil\ARM\ARMCC\bin\..\include\stdlib.h
6 | .\test.o: C:\Keil\ARM\ARMCC\bin\..\include\ctype.h
7 | .\test.o: C:\Keil\ARM\ARMCC\bin\..\include\string.h
8 | .\test.o: C:\Keil\ARM\ARMCC\bin\..\include\setjmp.h
9 | .\test.o: C:\Keil\ARM\ARMCC\bin\..\include\math.h
10 | .\test.o: C:\Keil\ARM\ARMCC\bin\..\include\errno.h
11 | .\test.o: ..\Eigenmath\prototypes.h
12 |
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/test.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/test.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/transform.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/transform.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/transform.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/transform.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/transpose.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/transpose.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/transpose.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/transpose.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/usart.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/usart.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/usart.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/usart.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/userfunc.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/userfunc.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/userfunc.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/userfunc.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/variables.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/variables.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/variables.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/variables.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/vectorize.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/vectorize.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/vectorize.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/vectorize.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/versionprovider.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/versionprovider.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/versionprovider.d:
--------------------------------------------------------------------------------
1 | .\versionprovider.o: ..\Eigenmath\versionProvider.cpp
2 | .\versionprovider.o: C:\Keil\ARM\ARMCC\bin\..\include\string.h
3 | .\versionprovider.o: C:\Keil\ARM\ARMCC\bin\..\include\stdio.h
4 | .\versionprovider.o: C:\Keil\ARM\ARMCC\bin\..\include\stdlib.h
5 | .\versionprovider.o: ..\Eigenmath\versionProvider.hpp
6 |
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/versionprovider.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/versionprovider.o
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/zero.crf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/zero.crf
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/zero.d:
--------------------------------------------------------------------------------
1 | .\zero.o: ..\Eigenmath\zero.cpp
2 | .\zero.o: ..\Eigenmath\stdafx.h
3 | .\zero.o: ..\Eigenmath\defs.h
4 | .\zero.o: C:\Keil\ARM\ARMCC\bin\..\include\stdio.h
5 | .\zero.o: C:\Keil\ARM\ARMCC\bin\..\include\stdlib.h
6 | .\zero.o: C:\Keil\ARM\ARMCC\bin\..\include\ctype.h
7 | .\zero.o: C:\Keil\ARM\ARMCC\bin\..\include\string.h
8 | .\zero.o: C:\Keil\ARM\ARMCC\bin\..\include\setjmp.h
9 | .\zero.o: C:\Keil\ARM\ARMCC\bin\..\include\math.h
10 | .\zero.o: C:\Keil\ARM\ARMCC\bin\..\include\errno.h
11 | .\zero.o: ..\Eigenmath\prototypes.h
12 |
--------------------------------------------------------------------------------
/Software/AMEv3P/MDK/zero.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/MDK/zero.o
--------------------------------------------------------------------------------
/Software/AMEv3P/StdPeriph_Driver/src/stm32f4xx_flash.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/StdPeriph_Driver/src/stm32f4xx_flash.c
--------------------------------------------------------------------------------
/Software/AMEv3P/StdPeriph_Driver/src/stm32f4xx_rcc.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/StdPeriph_Driver/src/stm32f4xx_rcc.c
--------------------------------------------------------------------------------
/Software/AMEv3P/System/font.h:
--------------------------------------------------------------------------------
1 | /*******************************************************************************
2 | ArithMax Open Source Calculator Project
3 | www.zephray.com
4 | *******************************************************************************/
5 | #ifndef __FONT_H__
6 | #define __FONT_H__
7 |
8 | extern const unsigned char Font_Ascii_Small[];
9 | extern const unsigned char Font_Ascii_Medium[];
10 |
11 | #endif
--------------------------------------------------------------------------------
/Software/AMEv3P/System/fvm.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zephray/ArithMax/7be13a576c89ec8f0e68c5f6143fe4b26979b182/Software/AMEv3P/System/fvm.c
--------------------------------------------------------------------------------
/Software/AMEv3P/System/ssm.c:
--------------------------------------------------------------------------------
1 | /*******************************************************************************
2 | ArithMax Open Source Calculator Project
3 | www.zephray.com
4 | *******************************************************************************/
5 | //Simple System Manager for ArithMax
6 |
--------------------------------------------------------------------------------
/Software/AMEv3P/System/ssm.h:
--------------------------------------------------------------------------------
1 | /*******************************************************************************
2 | ArithMax Open Source Calculator Project
3 | www.zephray.com
4 | *******************************************************************************/
5 | #ifndef __SSM_H__
6 | #define __SSM_H__
7 |
8 | #define SM_NULL 0x00 //Null message
9 | #define SM_CREATE 0x01 //Initialize the program
10 |
11 | #endif
--------------------------------------------------------------------------------
/Software/AMEv3P/main.h:
--------------------------------------------------------------------------------
1 | #ifndef __MAIN_H__
2 | #define __MAIN_H__
3 |
4 | #include "stm32f4xx.h"
5 | #include
6 | #include
7 |
8 | #define abs(x) (x < 0) ? (-x) : x
9 |
10 | #endif
11 |
--------------------------------------------------------------------------------
/Software/AMEv3P/sysbase.h:
--------------------------------------------------------------------------------
1 | #ifndef __SYSBASE_H__
2 | #define __SYSBASE_H__
3 | extern "C" {
4 | #include "main.h"
5 | #include "stn.h"
6 | #include "key.h"
7 | #include "spiflash.h"
8 | #include "usart.h"
9 | #include "powerman.h"
10 | #include "g2048.h"
11 | }
12 | #endif
--------------------------------------------------------------------------------