summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Move sw to sw-old and hw to hw-altium, add kicad filesNao Pross2018-10-30931-0/+113
|
* Add datasheets for ATmega328 and 74LS259Nao Pross2018-10-302-0/+3487
|
* Merge branch 'master' into naoprossNao Pross2018-10-3049-42526/+1
|\
| * Remove uselss resourcesNao Pross2018-10-3050-42573/+1
| |
* | Add datasheets and resourcesNao Pross2017-11-2860-3/+89142
| |
* | remove unused TODO fileNao Pross2017-11-231-47/+0
| |
* | update cpld files from VHDL dev machine and delete programmer code (unused)Nao Pross2017-11-23116-2451/+5536
| |
* | Improvements in PIO driver, pio test rewritten in inline asmNao Pross2017-11-147-259/+68
| |
* | Update doc, remove z80uPC.tex, improved z80uPC_nostyleNao Pross2017-11-1416-350/+1177
| | | | | | | | | | it was useless to have 2 copies of the same thing, soon z80uPC_nostyle will be renamed to z80uPC
* | Merge branch 'naopross' of github.com:NaoPross/z80uPC into naoprossNao Pross2017-11-099-46/+220
|\ \ | | | | | | | | | Doc was update from another computer
| * | Continues both hw and sw docNao Pross2017-11-059-46/+220
| | |
* | | Update makefile, and bug fix in pio driver and usartNao Pross2017-11-0919-34/+532
|/ /
* | Update gitignore and add sdcc manualNao Pross2017-10-192-4/+27811
| |
* | Got a real rom programmer, this code is still broken but I don't careNao Pross2017-10-197-46/+119
| |
* | Fix for PIO driver and its test and deletes build filesNao Pross2017-10-1940-3373/+152
| |
* | Move test units to z80/tests, and drivers are now statically linkedNao Pross2017-10-0561-1148/+907
| | | | | | | | | | | | | | | | Makefiles for the test units were getting messier, so now drivers (that need to be tested) are statically compiled in their own folder under z80/drivers. The kernel makefile and is now broken since everything has been moved.
* | Test units are now in their own folder 'z80_test', add programmer cli interfaceNao Pross2017-10-0554-347/+3769
| |
* | Merge remote-tracking branch 'origin/atlas' into naoprossNao Pross2017-09-1016-103/+1002
|\ \
| * | macro fixatlasleleraffa97@hotmail.it2017-08-312-10/+10
| | |
| * | Some untracked files from last commitleleraffa97@hotmail.it2017-08-314-5/+520
| | |
| * | File system interfaceleleraffa97@hotmail.it2017-08-3113-90/+473
| | | | | | | | | | | | | | | Basic file system implementation Path resolution work in progress
* | | partial implementation for ctc drivers and memory managementNao Pross2017-09-108-97/+53
| | |
* | | new documentation with no stylingNao Pross2017-09-1011-2/+165
| | | | | | | | | | | | | | | | | | the old documentation was written more like a journal than a proper paper, so I am rewriting in a separate document. Once the new doc will be completed, the content of the old one will be discarted.
* | | z80_test cleanup and makefile correctionsNao Pross2017-09-073-93/+13
| | |
* | | minor bug fix for ROM programmerNao Pross2017-09-074-33/+18
| | |
* | | add test program for z80Nao Pross2017-08-2813-10/+464
| | |
* | | update gitignore to ignore sdcc outputNao Pross2017-08-2617-1235/+3
| | |
* | | merge remote-tracking branch 'origin/atlas' into naoprossNao Pross2017-08-2626-78/+1482
|\ \ \ | |/ /
| * | time to inodeleleraffa97@hotmail.it2017-08-261-0/+2
| | |
| * | File system initializationleleraffa97@hotmail.it2017-08-2626-135/+1480
| | | | | | | | | | | | Simple I/O (sio) interfaced, not yet implemented
| * | Merge remote-tracking branch 'origin/naopross' into atlasleleraffa97@hotmail.it2017-08-2322-153/+644
| |\ \
| * | | Filesystem struct orderleleraffa97@hotmail.it2017-08-232-22/+79
| | | |
* | | | edit documentation abstractNao Pross2017-08-265-11/+19
| | | |
* | | | implements pio.h functions and makefile update to optimize sizeNao Pross2017-08-2512-66/+238
| |/ / |/| | | | | | | | | | | | | | | | | - remove syscall.h, unused and not implemented - bug fix for memcmp() in string.c other changes are still partially unfinished and might not work
* | | new programmer interface for linuxNao Pross2017-08-2312-99/+234
| | | | | | | | | | | | | | | | | | | | | | | | there is a new program with GUI (gtk3) to send data to its avr conterpart. it needs to be tested, since there may be a few bugs in it; building a GUI was a terrible idea.
* | | updated .gitignoreNao Pross2017-08-081-27/+27
| | |
* | | implementation for avr programmerNao Pross2017-08-0717-0/+356
|/ / | | | | | | | | the programmer will receive the binary in blocks of defined size by a program under sw/programmer/linux (moved from sw/linux).
* | filesystem structure intro and docsNao Pross2017-08-0111-17/+20085
| | | | | | | | | | | | | | | | - new type pid_t and program management mechanism to make it easier to switch to a multitasking kernel - new memory related functions in memory.h to move, copy and manage pages - fix typos
* | new structure for process management, structures to discussNao Pross2017-07-0426-969/+328
| | | | | | | | | | | | | | | | | | | | | | | | | | | | the idea behind kernel/include/progman.h was good but the implementation was very not unix-like, so I made a new file under kernel/include/process.h that will implement the same features other changes: - move usart register structs definitions outside of the device - remove old build files - delete boot.h and boot_loader.h (as they weren't used by anything) - change on makefile to build binary with `makebin` instead of `xxd` - new file memory.h to implement memory mapping and mmu control - new type `uint` in types.h
* | merge branch 'atlas' into naoprossNao Pross2017-07-04538-70/+51243
|\ \
| * | Order and update of the structleleraffa97@hotmail.it2017-06-2310-218/+260
| |/ | | | | | | | | Separation of boot and login sections Improuved program manager system
| * libc memset, memcmpHEADmasterleleraffa97@hotmail.it2017-06-195-24/+61
| | | | | | | | | | boot improved program allocation
| * Merge branch 'master' of github.com:NaoPross/z80uPC into atlasleleraffa97@hotmail.it2017-06-19543-174/+51138
| |\ | | | | | | | | | Serial updates from NaoPross
| | * merge branch 'naopross'Nao Pross2017-06-1647-430/+2291
| | |\ | | | | | | | | | | | | merge to get the new doc on master
| | * \ merge branch 'hardware'Nao Pross2017-06-10518-70/+49636
| | |\ \ | | | | | | | | | | | | | | | | | | | | this is probably the last merge from this branch since the board has been sent to print
| | | * | board complete, generate gerber (x2) fileshardwareNao Pross2017-05-2391-275/+35121
| | | | | | | | | | | | | | | | | | | | | | | | | this is probably the last commit before printing the PCB, unless there are some other errors in the board design
| | | * | finish wiring and add eurocard compliant standard holesNao Pross2017-05-19178-55/+790
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | since there wasn't enough space (I should have added the holes before beginning) there are only 4 holes instead of 6 (2 will be cut out since the space is unused).
| | | * | wiring for 7 segment displays and traces for the remaining CPU signalsNao Pross2017-05-1954-6/+56
| | | | |
| | | * | new traces for cpu signals and for high address to the MMU / addr decoderNao Pross2017-05-1827-3/+3
| | | | | | | | | | | | | | | | | | | | there are also many other minor changes to connect various wires
| | | * | wiring for CTC (U8) to address bus and data busNao Pross2017-05-1817-3/+3
| | | | |