├── 30c3-workshop.pdf ├── 44con-workshop.pdf ├── README.md ├── Thumbs.db ├── board ├── 30c3 │ ├── Eagle │ │ ├── tama2 (1).brd │ │ └── tama2 (1).sch │ ├── boardsw-v2 │ │ ├── highcompatibility │ │ │ └── GeneralPlusRomWrite │ │ │ │ └── GeneralPlusRomWrite.ino │ │ └── serw.py │ └── boardsw │ │ ├── highcompatibility │ │ └── GeneralPlusRomWrite │ │ │ └── GeneralPlusRomWrite.ino │ │ └── serw.py ├── 44con │ ├── boardsw │ │ ├── Config │ │ │ ├── AppConfig.h │ │ │ └── LUFAConfig.h │ │ ├── Descriptors.c │ │ ├── Descriptors.d │ │ ├── Descriptors.h │ │ ├── Descriptors.o │ │ ├── Doxygen.conf │ │ ├── GenericHID.bak.c │ │ ├── GenericHID.bin │ │ ├── GenericHID.c │ │ ├── GenericHID.d │ │ ├── GenericHID.eep │ │ ├── GenericHID.elf │ │ ├── GenericHID.h │ │ ├── GenericHID.hex │ │ ├── GenericHID.lss │ │ ├── GenericHID.map │ │ ├── GenericHID.o │ │ ├── GenericHID.sym │ │ ├── GenericHID.txt │ │ ├── HostTestApp │ │ │ └── test_generic_hid.py │ │ ├── asf.xml │ │ └── makefile │ ├── bootloader │ │ └── DFU │ │ │ ├── BootloaderAPI.c │ │ │ ├── BootloaderAPI.h │ │ │ ├── BootloaderAPITable.S │ │ │ ├── BootloaderDFU.c │ │ │ ├── BootloaderDFU.h │ │ │ ├── BootloaderDFU.txt │ │ │ ├── Config │ │ │ ├── AppConfig.h │ │ │ └── LUFAConfig.h │ │ │ ├── Descriptors.c │ │ │ ├── Descriptors.h │ │ │ ├── Doxygen.conf │ │ │ ├── asf.xml │ │ │ └── makefile │ └── eagle │ │ ├── tama.brd │ │ └── tama.sch ├── boardsw │ ├── Config │ │ ├── AppConfig.h │ │ └── LUFAConfig.h │ ├── Descriptors.c │ ├── Descriptors.d │ ├── Descriptors.h │ ├── Descriptors.o │ ├── Doxygen.conf │ ├── GenericHID.bak.c │ ├── GenericHID.bin │ ├── GenericHID.c │ ├── GenericHID.d │ ├── GenericHID.eep │ ├── GenericHID.elf │ ├── GenericHID.h │ ├── GenericHID.hex │ ├── GenericHID.lss │ ├── GenericHID.map │ ├── GenericHID.o │ ├── GenericHID.sym │ ├── GenericHID.txt │ ├── HostTestApp │ │ └── test_generic_hid.py │ ├── asf.xml │ └── makefile ├── bootloader │ └── DFU │ │ ├── BootloaderAPI.c │ │ ├── BootloaderAPI.h │ │ ├── BootloaderAPITable.S │ │ ├── BootloaderDFU.c │ │ ├── BootloaderDFU.h │ │ ├── BootloaderDFU.txt │ │ ├── Config │ │ ├── AppConfig.h │ │ └── LUFAConfig.h │ │ ├── Descriptors.c │ │ ├── Descriptors.h │ │ ├── Doxygen.conf │ │ ├── asf.xml │ │ └── makefile └── eagle │ ├── tama.brd │ └── tama.sch ├── itemmake ├── README ├── in.txt ├── itemmake.py ├── madworld │ ├── Thumbs.db │ ├── ball.bmp │ ├── ball2.bmp │ ├── bday.bmp │ ├── bday2.bmp │ ├── candle1.bmp │ ├── candle2.bmp │ ├── candle3.bmp │ ├── d1.bmp │ ├── d2.bmp │ ├── d3.bmp │ ├── d4.bmp │ ├── hands.bmp │ ├── hands2.bmp │ ├── mad.bmp │ ├── madi.bmp │ ├── title.bmp │ ├── tree1.bmp │ ├── tree2.bmp │ ├── tree3.bmp │ ├── treeb.bmp │ ├── treeg1.bmp │ ├── treeg2.bmp │ ├── treeg3.bmp │ ├── treewin.bmp │ ├── treewin2.bmp │ ├── wd1.bmp │ ├── wd2.bmp │ ├── wd3.bmp │ ├── wd4.bmp │ ├── wd5.bmp │ ├── wd6.bmp │ ├── wdb.bmp │ ├── wdb2.bmp │ ├── win0.bmp │ ├── win1.bmp │ ├── windowclose.bmp │ ├── windowclose2.bmp │ ├── windowsit1.bmp │ ├── windowsit2.bmp │ ├── windowsit3.bmp │ ├── winvc.bmp │ └── winvc2.bmp ├── out.txt ├── samplescript.txt ├── samplescript2.txt └── template.txt ├── linux └── figurewrite.py ├── portrait ├── Thumbs.db ├── conv.py ├── makiko ├── new.png ├── portrait.py └── test.bmp ├── tASMgotchi ├── CmdLine.py ├── CmdLine.pyc ├── CorePragmas.py ├── CorePragmas.pyc ├── Environment.py ├── Environment.pyc ├── Errors.py ├── Errors.pyc ├── Frontend.py ├── Frontend.pyc ├── IR.py ├── IR.pyc ├── Listing.py ├── Listing.pyc ├── Macro.py ├── Macro.pyc ├── Opcodes.py ├── Opcodes.pyc ├── Passes.py ├── Passes.pyc ├── README.md ├── Tamagotchi.py ├── Tamagotchi.pyc ├── __init__.py ├── a ├── bin ├── button │ ├── Thumbs.db │ ├── a.bmp │ ├── b.bmp │ ├── c.bmp │ ├── d.gif │ ├── e.gif │ ├── images.txt │ ├── serwtest.txt │ └── test.txt ├── images.txt ├── ir │ ├── 30c3w.jpg │ ├── IR.bmp │ ├── Thumbs.db │ ├── a.bmp │ ├── b.bmp │ ├── c.bmp │ ├── images.txt │ └── test.txt ├── itworks │ ├── images.txt │ └── test.txt ├── li.txt ├── li2.txt ├── li3.txt ├── out.txt ├── sound │ ├── Thumbs.db │ ├── a.bmp │ ├── b.bmp │ ├── c.bmp │ ├── images.txt │ └── test.txt ├── tASMgotchi.py ├── template.txt ├── template0.txt ├── temporarycode.tmp ├── test ├── test.txt └── test2 │ ├── images.txt │ └── test.txt ├── test ├── 0.bmp ├── Thumbs.db └── itworks.txt ├── windows └── figurewrite.py ├── workshop.pdf └── workshop.pptx /30c3-workshop.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/30c3-workshop.pdf -------------------------------------------------------------------------------- /44con-workshop.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/44con-workshop.pdf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/README.md -------------------------------------------------------------------------------- /Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/Thumbs.db -------------------------------------------------------------------------------- /board/30c3/Eagle/tama2 (1).brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/board/30c3/Eagle/tama2 (1).brd -------------------------------------------------------------------------------- /board/30c3/Eagle/tama2 (1).sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/board/30c3/Eagle/tama2 (1).sch -------------------------------------------------------------------------------- /board/30c3/boardsw-v2/highcompatibility/GeneralPlusRomWrite/GeneralPlusRomWrite.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/board/30c3/boardsw-v2/highcompatibility/GeneralPlusRomWrite/GeneralPlusRomWrite.ino -------------------------------------------------------------------------------- /board/30c3/boardsw-v2/serw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/board/30c3/boardsw-v2/serw.py -------------------------------------------------------------------------------- /board/30c3/boardsw/highcompatibility/GeneralPlusRomWrite/GeneralPlusRomWrite.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/board/30c3/boardsw/highcompatibility/GeneralPlusRomWrite/GeneralPlusRomWrite.ino -------------------------------------------------------------------------------- /board/30c3/boardsw/serw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/board/30c3/boardsw/serw.py -------------------------------------------------------------------------------- /board/44con/boardsw/Config/AppConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/board/44con/boardsw/Config/AppConfig.h -------------------------------------------------------------------------------- /board/44con/boardsw/Config/LUFAConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/board/44con/boardsw/Config/LUFAConfig.h -------------------------------------------------------------------------------- /board/44con/boardsw/Descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/board/44con/boardsw/Descriptors.c -------------------------------------------------------------------------------- /board/44con/boardsw/Descriptors.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/board/44con/boardsw/Descriptors.d -------------------------------------------------------------------------------- /board/44con/boardsw/Descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/board/44con/boardsw/Descriptors.h -------------------------------------------------------------------------------- /board/44con/boardsw/Descriptors.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/board/44con/boardsw/Descriptors.o -------------------------------------------------------------------------------- /board/44con/boardsw/Doxygen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/board/44con/boardsw/Doxygen.conf -------------------------------------------------------------------------------- /board/44con/boardsw/GenericHID.bak.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/board/44con/boardsw/GenericHID.bak.c -------------------------------------------------------------------------------- /board/44con/boardsw/GenericHID.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/board/44con/boardsw/GenericHID.bin -------------------------------------------------------------------------------- /board/44con/boardsw/GenericHID.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/board/44con/boardsw/GenericHID.c -------------------------------------------------------------------------------- /board/44con/boardsw/GenericHID.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/board/44con/boardsw/GenericHID.d -------------------------------------------------------------------------------- /board/44con/boardsw/GenericHID.eep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/board/44con/boardsw/GenericHID.eep -------------------------------------------------------------------------------- /board/44con/boardsw/GenericHID.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/board/44con/boardsw/GenericHID.elf -------------------------------------------------------------------------------- /board/44con/boardsw/GenericHID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/board/44con/boardsw/GenericHID.h -------------------------------------------------------------------------------- /board/44con/boardsw/GenericHID.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/board/44con/boardsw/GenericHID.hex -------------------------------------------------------------------------------- /board/44con/boardsw/GenericHID.lss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/board/44con/boardsw/GenericHID.lss -------------------------------------------------------------------------------- /board/44con/boardsw/GenericHID.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/board/44con/boardsw/GenericHID.map -------------------------------------------------------------------------------- /board/44con/boardsw/GenericHID.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/board/44con/boardsw/GenericHID.o -------------------------------------------------------------------------------- /board/44con/boardsw/GenericHID.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/board/44con/boardsw/GenericHID.sym -------------------------------------------------------------------------------- /board/44con/boardsw/GenericHID.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/board/44con/boardsw/GenericHID.txt -------------------------------------------------------------------------------- /board/44con/boardsw/HostTestApp/test_generic_hid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/board/44con/boardsw/HostTestApp/test_generic_hid.py -------------------------------------------------------------------------------- /board/44con/boardsw/asf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/board/44con/boardsw/asf.xml -------------------------------------------------------------------------------- /board/44con/boardsw/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/board/44con/boardsw/makefile -------------------------------------------------------------------------------- /board/44con/bootloader/DFU/BootloaderAPI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/board/44con/bootloader/DFU/BootloaderAPI.c -------------------------------------------------------------------------------- /board/44con/bootloader/DFU/BootloaderAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/board/44con/bootloader/DFU/BootloaderAPI.h -------------------------------------------------------------------------------- /board/44con/bootloader/DFU/BootloaderAPITable.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/board/44con/bootloader/DFU/BootloaderAPITable.S -------------------------------------------------------------------------------- /board/44con/bootloader/DFU/BootloaderDFU.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/board/44con/bootloader/DFU/BootloaderDFU.c -------------------------------------------------------------------------------- /board/44con/bootloader/DFU/BootloaderDFU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/board/44con/bootloader/DFU/BootloaderDFU.h -------------------------------------------------------------------------------- /board/44con/bootloader/DFU/BootloaderDFU.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/board/44con/bootloader/DFU/BootloaderDFU.txt -------------------------------------------------------------------------------- /board/44con/bootloader/DFU/Config/AppConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/board/44con/bootloader/DFU/Config/AppConfig.h -------------------------------------------------------------------------------- /board/44con/bootloader/DFU/Config/LUFAConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/board/44con/bootloader/DFU/Config/LUFAConfig.h -------------------------------------------------------------------------------- /board/44con/bootloader/DFU/Descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/board/44con/bootloader/DFU/Descriptors.c -------------------------------------------------------------------------------- /board/44con/bootloader/DFU/Descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/board/44con/bootloader/DFU/Descriptors.h -------------------------------------------------------------------------------- /board/44con/bootloader/DFU/Doxygen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/board/44con/bootloader/DFU/Doxygen.conf -------------------------------------------------------------------------------- /board/44con/bootloader/DFU/asf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/board/44con/bootloader/DFU/asf.xml -------------------------------------------------------------------------------- /board/44con/bootloader/DFU/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/board/44con/bootloader/DFU/makefile -------------------------------------------------------------------------------- /board/44con/eagle/tama.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/board/44con/eagle/tama.brd -------------------------------------------------------------------------------- /board/44con/eagle/tama.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/board/44con/eagle/tama.sch -------------------------------------------------------------------------------- /board/boardsw/Config/AppConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/board/boardsw/Config/AppConfig.h -------------------------------------------------------------------------------- /board/boardsw/Config/LUFAConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/board/boardsw/Config/LUFAConfig.h -------------------------------------------------------------------------------- /board/boardsw/Descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/board/boardsw/Descriptors.c -------------------------------------------------------------------------------- /board/boardsw/Descriptors.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/board/boardsw/Descriptors.d -------------------------------------------------------------------------------- /board/boardsw/Descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/board/boardsw/Descriptors.h -------------------------------------------------------------------------------- /board/boardsw/Descriptors.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/board/boardsw/Descriptors.o -------------------------------------------------------------------------------- /board/boardsw/Doxygen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/board/boardsw/Doxygen.conf -------------------------------------------------------------------------------- /board/boardsw/GenericHID.bak.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/board/boardsw/GenericHID.bak.c -------------------------------------------------------------------------------- /board/boardsw/GenericHID.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/board/boardsw/GenericHID.bin -------------------------------------------------------------------------------- /board/boardsw/GenericHID.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/board/boardsw/GenericHID.c -------------------------------------------------------------------------------- /board/boardsw/GenericHID.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/board/boardsw/GenericHID.d -------------------------------------------------------------------------------- /board/boardsw/GenericHID.eep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/board/boardsw/GenericHID.eep -------------------------------------------------------------------------------- /board/boardsw/GenericHID.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/board/boardsw/GenericHID.elf -------------------------------------------------------------------------------- /board/boardsw/GenericHID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/board/boardsw/GenericHID.h -------------------------------------------------------------------------------- /board/boardsw/GenericHID.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/board/boardsw/GenericHID.hex -------------------------------------------------------------------------------- /board/boardsw/GenericHID.lss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/board/boardsw/GenericHID.lss -------------------------------------------------------------------------------- /board/boardsw/GenericHID.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/board/boardsw/GenericHID.map -------------------------------------------------------------------------------- /board/boardsw/GenericHID.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/board/boardsw/GenericHID.o -------------------------------------------------------------------------------- /board/boardsw/GenericHID.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/board/boardsw/GenericHID.sym -------------------------------------------------------------------------------- /board/boardsw/GenericHID.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/board/boardsw/GenericHID.txt -------------------------------------------------------------------------------- /board/boardsw/HostTestApp/test_generic_hid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/board/boardsw/HostTestApp/test_generic_hid.py -------------------------------------------------------------------------------- /board/boardsw/asf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/board/boardsw/asf.xml -------------------------------------------------------------------------------- /board/boardsw/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/board/boardsw/makefile -------------------------------------------------------------------------------- /board/bootloader/DFU/BootloaderAPI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/board/bootloader/DFU/BootloaderAPI.c -------------------------------------------------------------------------------- /board/bootloader/DFU/BootloaderAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/board/bootloader/DFU/BootloaderAPI.h -------------------------------------------------------------------------------- /board/bootloader/DFU/BootloaderAPITable.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/board/bootloader/DFU/BootloaderAPITable.S -------------------------------------------------------------------------------- /board/bootloader/DFU/BootloaderDFU.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/board/bootloader/DFU/BootloaderDFU.c -------------------------------------------------------------------------------- /board/bootloader/DFU/BootloaderDFU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/board/bootloader/DFU/BootloaderDFU.h -------------------------------------------------------------------------------- /board/bootloader/DFU/BootloaderDFU.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/board/bootloader/DFU/BootloaderDFU.txt -------------------------------------------------------------------------------- /board/bootloader/DFU/Config/AppConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/board/bootloader/DFU/Config/AppConfig.h -------------------------------------------------------------------------------- /board/bootloader/DFU/Config/LUFAConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/board/bootloader/DFU/Config/LUFAConfig.h -------------------------------------------------------------------------------- /board/bootloader/DFU/Descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/board/bootloader/DFU/Descriptors.c -------------------------------------------------------------------------------- /board/bootloader/DFU/Descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/board/bootloader/DFU/Descriptors.h -------------------------------------------------------------------------------- /board/bootloader/DFU/Doxygen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/board/bootloader/DFU/Doxygen.conf -------------------------------------------------------------------------------- /board/bootloader/DFU/asf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/board/bootloader/DFU/asf.xml -------------------------------------------------------------------------------- /board/bootloader/DFU/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/board/bootloader/DFU/makefile -------------------------------------------------------------------------------- /board/eagle/tama.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/board/eagle/tama.brd -------------------------------------------------------------------------------- /board/eagle/tama.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/board/eagle/tama.sch -------------------------------------------------------------------------------- /itemmake/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/itemmake/README -------------------------------------------------------------------------------- /itemmake/in.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/itemmake/in.txt -------------------------------------------------------------------------------- /itemmake/itemmake.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/itemmake/itemmake.py -------------------------------------------------------------------------------- /itemmake/madworld/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/itemmake/madworld/Thumbs.db -------------------------------------------------------------------------------- /itemmake/madworld/ball.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/itemmake/madworld/ball.bmp -------------------------------------------------------------------------------- /itemmake/madworld/ball2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/itemmake/madworld/ball2.bmp -------------------------------------------------------------------------------- /itemmake/madworld/bday.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/itemmake/madworld/bday.bmp -------------------------------------------------------------------------------- /itemmake/madworld/bday2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/itemmake/madworld/bday2.bmp -------------------------------------------------------------------------------- /itemmake/madworld/candle1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/itemmake/madworld/candle1.bmp -------------------------------------------------------------------------------- /itemmake/madworld/candle2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/itemmake/madworld/candle2.bmp -------------------------------------------------------------------------------- /itemmake/madworld/candle3.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/itemmake/madworld/candle3.bmp -------------------------------------------------------------------------------- /itemmake/madworld/d1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/itemmake/madworld/d1.bmp -------------------------------------------------------------------------------- /itemmake/madworld/d2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/itemmake/madworld/d2.bmp -------------------------------------------------------------------------------- /itemmake/madworld/d3.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/itemmake/madworld/d3.bmp -------------------------------------------------------------------------------- /itemmake/madworld/d4.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/itemmake/madworld/d4.bmp -------------------------------------------------------------------------------- /itemmake/madworld/hands.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/itemmake/madworld/hands.bmp -------------------------------------------------------------------------------- /itemmake/madworld/hands2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/itemmake/madworld/hands2.bmp -------------------------------------------------------------------------------- /itemmake/madworld/mad.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/itemmake/madworld/mad.bmp -------------------------------------------------------------------------------- /itemmake/madworld/madi.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/itemmake/madworld/madi.bmp -------------------------------------------------------------------------------- /itemmake/madworld/title.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/itemmake/madworld/title.bmp -------------------------------------------------------------------------------- /itemmake/madworld/tree1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/itemmake/madworld/tree1.bmp -------------------------------------------------------------------------------- /itemmake/madworld/tree2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/itemmake/madworld/tree2.bmp -------------------------------------------------------------------------------- /itemmake/madworld/tree3.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/itemmake/madworld/tree3.bmp -------------------------------------------------------------------------------- /itemmake/madworld/treeb.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/itemmake/madworld/treeb.bmp -------------------------------------------------------------------------------- /itemmake/madworld/treeg1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/itemmake/madworld/treeg1.bmp -------------------------------------------------------------------------------- /itemmake/madworld/treeg2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/itemmake/madworld/treeg2.bmp -------------------------------------------------------------------------------- /itemmake/madworld/treeg3.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/itemmake/madworld/treeg3.bmp -------------------------------------------------------------------------------- /itemmake/madworld/treewin.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/itemmake/madworld/treewin.bmp -------------------------------------------------------------------------------- /itemmake/madworld/treewin2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/itemmake/madworld/treewin2.bmp -------------------------------------------------------------------------------- /itemmake/madworld/wd1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/itemmake/madworld/wd1.bmp -------------------------------------------------------------------------------- /itemmake/madworld/wd2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/itemmake/madworld/wd2.bmp -------------------------------------------------------------------------------- /itemmake/madworld/wd3.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/itemmake/madworld/wd3.bmp -------------------------------------------------------------------------------- /itemmake/madworld/wd4.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/itemmake/madworld/wd4.bmp -------------------------------------------------------------------------------- /itemmake/madworld/wd5.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/itemmake/madworld/wd5.bmp -------------------------------------------------------------------------------- /itemmake/madworld/wd6.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/itemmake/madworld/wd6.bmp -------------------------------------------------------------------------------- /itemmake/madworld/wdb.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/itemmake/madworld/wdb.bmp -------------------------------------------------------------------------------- /itemmake/madworld/wdb2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/itemmake/madworld/wdb2.bmp -------------------------------------------------------------------------------- /itemmake/madworld/win0.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/itemmake/madworld/win0.bmp -------------------------------------------------------------------------------- /itemmake/madworld/win1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/itemmake/madworld/win1.bmp -------------------------------------------------------------------------------- /itemmake/madworld/windowclose.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/itemmake/madworld/windowclose.bmp -------------------------------------------------------------------------------- /itemmake/madworld/windowclose2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/itemmake/madworld/windowclose2.bmp -------------------------------------------------------------------------------- /itemmake/madworld/windowsit1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/itemmake/madworld/windowsit1.bmp -------------------------------------------------------------------------------- /itemmake/madworld/windowsit2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/itemmake/madworld/windowsit2.bmp -------------------------------------------------------------------------------- /itemmake/madworld/windowsit3.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/itemmake/madworld/windowsit3.bmp -------------------------------------------------------------------------------- /itemmake/madworld/winvc.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/itemmake/madworld/winvc.bmp -------------------------------------------------------------------------------- /itemmake/madworld/winvc2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/itemmake/madworld/winvc2.bmp -------------------------------------------------------------------------------- /itemmake/out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/itemmake/out.txt -------------------------------------------------------------------------------- /itemmake/samplescript.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/itemmake/samplescript.txt -------------------------------------------------------------------------------- /itemmake/samplescript2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/itemmake/samplescript2.txt -------------------------------------------------------------------------------- /itemmake/template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/itemmake/template.txt -------------------------------------------------------------------------------- /linux/figurewrite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/linux/figurewrite.py -------------------------------------------------------------------------------- /portrait/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/portrait/Thumbs.db -------------------------------------------------------------------------------- /portrait/conv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/portrait/conv.py -------------------------------------------------------------------------------- /portrait/makiko: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/portrait/makiko -------------------------------------------------------------------------------- /portrait/new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/portrait/new.png -------------------------------------------------------------------------------- /portrait/portrait.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/portrait/portrait.py -------------------------------------------------------------------------------- /portrait/test.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/portrait/test.bmp -------------------------------------------------------------------------------- /tASMgotchi/CmdLine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/tASMgotchi/CmdLine.py -------------------------------------------------------------------------------- /tASMgotchi/CmdLine.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/tASMgotchi/CmdLine.pyc -------------------------------------------------------------------------------- /tASMgotchi/CorePragmas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/tASMgotchi/CorePragmas.py -------------------------------------------------------------------------------- /tASMgotchi/CorePragmas.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/tASMgotchi/CorePragmas.pyc -------------------------------------------------------------------------------- /tASMgotchi/Environment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/tASMgotchi/Environment.py -------------------------------------------------------------------------------- /tASMgotchi/Environment.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/tASMgotchi/Environment.pyc -------------------------------------------------------------------------------- /tASMgotchi/Errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/tASMgotchi/Errors.py -------------------------------------------------------------------------------- /tASMgotchi/Errors.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/tASMgotchi/Errors.pyc -------------------------------------------------------------------------------- /tASMgotchi/Frontend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/tASMgotchi/Frontend.py -------------------------------------------------------------------------------- /tASMgotchi/Frontend.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/tASMgotchi/Frontend.pyc -------------------------------------------------------------------------------- /tASMgotchi/IR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/tASMgotchi/IR.py -------------------------------------------------------------------------------- /tASMgotchi/IR.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/tASMgotchi/IR.pyc -------------------------------------------------------------------------------- /tASMgotchi/Listing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/tASMgotchi/Listing.py -------------------------------------------------------------------------------- /tASMgotchi/Listing.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/tASMgotchi/Listing.pyc -------------------------------------------------------------------------------- /tASMgotchi/Macro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/tASMgotchi/Macro.py -------------------------------------------------------------------------------- /tASMgotchi/Macro.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/tASMgotchi/Macro.pyc -------------------------------------------------------------------------------- /tASMgotchi/Opcodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/tASMgotchi/Opcodes.py -------------------------------------------------------------------------------- /tASMgotchi/Opcodes.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/tASMgotchi/Opcodes.pyc -------------------------------------------------------------------------------- /tASMgotchi/Passes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/tASMgotchi/Passes.py -------------------------------------------------------------------------------- /tASMgotchi/Passes.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/tASMgotchi/Passes.pyc -------------------------------------------------------------------------------- /tASMgotchi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/tASMgotchi/README.md -------------------------------------------------------------------------------- /tASMgotchi/Tamagotchi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/tASMgotchi/Tamagotchi.py -------------------------------------------------------------------------------- /tASMgotchi/Tamagotchi.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/tASMgotchi/Tamagotchi.pyc -------------------------------------------------------------------------------- /tASMgotchi/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/tASMgotchi/__init__.py -------------------------------------------------------------------------------- /tASMgotchi/a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/tASMgotchi/a -------------------------------------------------------------------------------- /tASMgotchi/bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/tASMgotchi/bin -------------------------------------------------------------------------------- /tASMgotchi/button/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/tASMgotchi/button/Thumbs.db -------------------------------------------------------------------------------- /tASMgotchi/button/a.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/tASMgotchi/button/a.bmp -------------------------------------------------------------------------------- /tASMgotchi/button/b.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/tASMgotchi/button/b.bmp -------------------------------------------------------------------------------- /tASMgotchi/button/c.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/tASMgotchi/button/c.bmp -------------------------------------------------------------------------------- /tASMgotchi/button/d.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/tASMgotchi/button/d.gif -------------------------------------------------------------------------------- /tASMgotchi/button/e.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/tASMgotchi/button/e.gif -------------------------------------------------------------------------------- /tASMgotchi/button/images.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/tASMgotchi/button/images.txt -------------------------------------------------------------------------------- /tASMgotchi/button/serwtest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/tASMgotchi/button/serwtest.txt -------------------------------------------------------------------------------- /tASMgotchi/button/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/tASMgotchi/button/test.txt -------------------------------------------------------------------------------- /tASMgotchi/images.txt: -------------------------------------------------------------------------------- 1 | C:\Users\Natalie\Downloads\Tamagotchi-Hack-master\portrait\test2.bmp -------------------------------------------------------------------------------- /tASMgotchi/ir/30c3w.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/tASMgotchi/ir/30c3w.jpg -------------------------------------------------------------------------------- /tASMgotchi/ir/IR.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/tASMgotchi/ir/IR.bmp -------------------------------------------------------------------------------- /tASMgotchi/ir/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/tASMgotchi/ir/Thumbs.db -------------------------------------------------------------------------------- /tASMgotchi/ir/a.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/tASMgotchi/ir/a.bmp -------------------------------------------------------------------------------- /tASMgotchi/ir/b.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/tASMgotchi/ir/b.bmp -------------------------------------------------------------------------------- /tASMgotchi/ir/c.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/tASMgotchi/ir/c.bmp -------------------------------------------------------------------------------- /tASMgotchi/ir/images.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/tASMgotchi/ir/images.txt -------------------------------------------------------------------------------- /tASMgotchi/ir/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/tASMgotchi/ir/test.txt -------------------------------------------------------------------------------- /tASMgotchi/itworks/images.txt: -------------------------------------------------------------------------------- 1 | ../portrait/new.png 2 | -------------------------------------------------------------------------------- /tASMgotchi/itworks/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/tASMgotchi/itworks/test.txt -------------------------------------------------------------------------------- /tASMgotchi/li.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/tASMgotchi/li.txt -------------------------------------------------------------------------------- /tASMgotchi/li2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/tASMgotchi/li2.txt -------------------------------------------------------------------------------- /tASMgotchi/li3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/tASMgotchi/li3.txt -------------------------------------------------------------------------------- /tASMgotchi/out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/tASMgotchi/out.txt -------------------------------------------------------------------------------- /tASMgotchi/sound/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/tASMgotchi/sound/Thumbs.db -------------------------------------------------------------------------------- /tASMgotchi/sound/a.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/tASMgotchi/sound/a.bmp -------------------------------------------------------------------------------- /tASMgotchi/sound/b.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/tASMgotchi/sound/b.bmp -------------------------------------------------------------------------------- /tASMgotchi/sound/c.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/tASMgotchi/sound/c.bmp -------------------------------------------------------------------------------- /tASMgotchi/sound/images.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/tASMgotchi/sound/images.txt -------------------------------------------------------------------------------- /tASMgotchi/sound/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/tASMgotchi/sound/test.txt -------------------------------------------------------------------------------- /tASMgotchi/tASMgotchi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/tASMgotchi/tASMgotchi.py -------------------------------------------------------------------------------- /tASMgotchi/template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/tASMgotchi/template.txt -------------------------------------------------------------------------------- /tASMgotchi/template0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/tASMgotchi/template0.txt -------------------------------------------------------------------------------- /tASMgotchi/temporarycode.tmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/tASMgotchi/temporarycode.tmp -------------------------------------------------------------------------------- /tASMgotchi/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/tASMgotchi/test -------------------------------------------------------------------------------- /tASMgotchi/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/tASMgotchi/test.txt -------------------------------------------------------------------------------- /tASMgotchi/test2/images.txt: -------------------------------------------------------------------------------- 1 | C:\Users\Natalie\Downloads\Tamagotchi-Hack-master\portrait\test2.bmp -------------------------------------------------------------------------------- /tASMgotchi/test2/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/tASMgotchi/test2/test.txt -------------------------------------------------------------------------------- /test/0.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/test/0.bmp -------------------------------------------------------------------------------- /test/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/test/Thumbs.db -------------------------------------------------------------------------------- /test/itworks.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/test/itworks.txt -------------------------------------------------------------------------------- /windows/figurewrite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/windows/figurewrite.py -------------------------------------------------------------------------------- /workshop.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/workshop.pdf -------------------------------------------------------------------------------- /workshop.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natashenka/Egg-Shell/HEAD/workshop.pptx --------------------------------------------------------------------------------