summaryrefslogtreecommitdiff
path: root/nuttx/arch/z80
Commit message (Collapse)AuthorAgeFilesLines
* Upate .gitignore files. Add .dSYM. Make sure / is present where needed. ↵Gregory Nutt2013-05-301-17/+16
| | | | Add some missing .gitignore files
* Various changes and bigfixes for problems detected by CppCheckGregory Nutt2013-05-091-2/+3
|
* Remove up_assert_codeGregory Nutt2013-04-257-158/+111
|
* Adding missing registration of /dev/zero; Condition registration of ↵Gregory Nutt2013-04-241-0/+8
| | | | /dev/null. From Ken Petit
* New Kconfig convention: Extra indentation in comments will render as HTML ↵Gregory Nutt2013-04-221-40/+40
| | | | preformatted text
* _exit() should not call atexit() or on_exit() functions; Rename ↵Gregory Nutt2013-04-181-1/+1
| | | | task_deletecurrent() to task_exit()
* Move LPC17xx IOCON register definitions from lpc17_gpio.h to lpc17_iocon.h; ↵Gregory Nutt2013-04-042-10/+8
| | | | fix a few more .gitignore files
* Clone svn:ignore directory atributed to .gitignore filesGregory Nutt2013-04-043-0/+31
|
* Corrections needed after further test of stack-based task argumentspatacongo2013-03-211-0/+6
| | | | git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5771 42af7a65-404d-4744-a932-0658087f49c3
* Copy siginfo_t to step before calling a user-space signal handlerpatacongo2013-03-211-1/+1
| | | | git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5769 42af7a65-404d-4744-a932-0658087f49c3
* Add a up_stack_frame() interface to allocate a frame of data on a task's stack.patacongo2013-03-212-8/+138
| | | | git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5768 42af7a65-404d-4744-a932-0658087f49c3
* In the kernel build, allocate the stacks for kernel threads from the kernel ↵patacongo2013-03-203-13/+59
| | | | | | heap so that they are protected from medddling by the applications git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5766 42af7a65-404d-4744-a932-0658087f49c3
* Change prototypes of up_create_stack and up_release_stack to include a task ↵patacongo2013-03-203-45/+90
| | | | | | type parameter git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5765 42af7a65-404d-4744-a932-0658087f49c3
* Fix a typo that crept into lpc17_allocateheap.c in the recent kernel ↵patacongo2013-03-111-16/+5
| | | | | | allocator changes git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5729 42af7a65-404d-4744-a932-0658087f49c3
* Create sched_ufree and sched_kfree from sched_free; Use user-accessible heap ↵patacongo2013-03-103-5/+5
| | | | | | to allocae stacks git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5725 42af7a65-404d-4744-a932-0658087f49c3
* More changes for a kernel-mode allocator (more to be done)patacongo2013-03-093-11/+19
| | | | git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5724 42af7a65-404d-4744-a932-0658087f49c3
* up_addregion should use kmm_addregion; move garbage kmm*.c file to mm/. for nowpatacongo2013-03-081-3/+4
| | | | git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5721 42af7a65-404d-4744-a932-0658087f49c3
* Add debug output when memory allocations failpatacongo2013-02-281-40/+70
| | | | git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5686 42af7a65-404d-4744-a932-0658087f49c3
* Some NuTiny-SDK-NUC120 size reduction; All serial driver vtables should be ↵patacongo2013-02-273-3/+3
| | | | | | static const git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5683 42af7a65-404d-4744-a932-0658087f49c3
* Rename _TCB to struct tcb_spatacongo2013-02-0427-55/+55
| | | | git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5610 42af7a65-404d-4744-a932-0658087f49c3
* Add syslog.h; rename lib_rawprintf() to syslog()patacongo2013-01-287-7/+7
| | | | git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5578 42af7a65-404d-4744-a932-0658087f49c3
* Serial driver needed even when no console; Fix user LED settings in all ↵patacongo2013-01-282-10/+35
| | | | | | STM32 configurations git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5575 42af7a65-404d-4744-a932-0658087f49c3
* Move stream data from TCB to task group structure.patacongo2013-01-261-24/+20
| | | | git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5569 42af7a65-404d-4744-a932-0658087f49c3
* Move file data from TCB to task grouppatacongo2013-01-261-5/+4
| | | | git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5567 42af7a65-404d-4744-a932-0658087f49c3
* Fix poll/select issue reported by Qiangpatacongo2013-01-241-4/+9
| | | | git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5559 42af7a65-404d-4744-a932-0658087f49c3
* Mostly costmetic updatespatacongo2012-12-236-72/+80
| | | | git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5452 42af7a65-404d-4744-a932-0658087f49c3
* Restructre address environment interfaces in preparation for incorporation ↵patacongo2012-12-182-68/+208
| | | | | | into binfmt/ logic git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5442 42af7a65-404d-4744-a932-0658087f49c3
* Add z180 system timerpatacongo2012-12-159-96/+326
| | | | git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5438 42af7a65-404d-4744-a932-0658087f49c3
* More z180 serial logicpatacongo2012-12-1414-126/+531
| | | | git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5437 42af7a65-404d-4744-a932-0658087f49c3
* Add framework for z180 SCC driverpatacongo2012-12-147-24/+1402
| | | | git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5436 42af7a65-404d-4744-a932-0658087f49c3
* Finsh Z80181/182 register bit definitionpatacongo2012-12-131-77/+394
| | | | git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5435 42af7a65-404d-4744-a932-0658087f49c3
* Add special register definitions needed for z80181 and z80182patacongo2012-12-132-114/+331
| | | | git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5434 42af7a65-404d-4744-a932-0658087f49c3
* Add z180 interrupt initialization logicpatacongo2012-12-125-61/+106
| | | | git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5433 42af7a65-404d-4744-a932-0658087f49c3
* Add z180 interrupt vectorspatacongo2012-12-127-253/+520
| | | | git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5432 42af7a65-404d-4744-a932-0658087f49c3
* Fix typo in z80-family Makefilespatacongo2012-12-122-2/+2
| | | | git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5431 42af7a65-404d-4744-a932-0658087f49c3
* Fix some early z180 compile errorspatacongo2012-12-116-23/+40
| | | | git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5430 42af7a65-404d-4744-a932-0658087f49c3
* configs/p112: Add a configuration for the Z180 P112 boardpatacongo2012-12-118-45/+165
| | | | git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5429 42af7a65-404d-4744-a932-0658087f49c3
* Add support for the Z180 MMU and generic hooks for processespatacongo2012-12-118-51/+896
| | | | git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5428 42af7a65-404d-4744-a932-0658087f49c3
* Add arch/z80/src/z180/z180_iomap.hpatacongo2012-12-104-27/+406
| | | | git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5427 42af7a65-404d-4744-a932-0658087f49c3
* Add source files for z180patacongo2012-12-1029-171/+2690
| | | | git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5426 42af7a65-404d-4744-a932-0658087f49c3
* Add header files for z180patacongo2012-12-106-0/+923
| | | | git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5425 42af7a65-404d-4744-a932-0658087f49c3
* configs/xtrs/ostest converted to kconfig-frontend and Windows nativepatacongo2012-12-085-5/+61
| | | | git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5421 42af7a65-404d-4744-a932-0658087f49c3
* Fixes for configs/z80sim/pashello Windows native buildpatacongo2012-12-081-3/+3
| | | | git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5420 42af7a65-404d-4744-a932-0658087f49c3
* Verify redesigned Z80 build on native Windowspatacongo2012-12-074-210/+216
| | | | git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5417 42af7a65-404d-4744-a932-0658087f49c3
* Redesign z80 build so that mkhpbase.sh bash script is not needed; remove ↵patacongo2012-12-0710-407/+196
| | | | | | support for older SDCC toolchains; Re-verify z80 build on Linux git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5416 42af7a65-404d-4744-a932-0658087f49c3
* Patches from Petteri Aimonen + stdbool and rand() changes for Freddie Chopinpatacongo2012-12-073-26/+25
| | | | git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5415 42af7a65-404d-4744-a932-0658087f49c3
* z80sim/ostest now builds okay under Linux with SDCC 3.2.1patacongo2012-12-052-79/+83
| | | | git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5414 42af7a65-404d-4744-a932-0658087f49c3
* Progress toward natvie z80 SDCC build -- still issuespatacongo2012-12-056-97/+581
| | | | git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5413 42af7a65-404d-4744-a932-0658087f49c3
* Progress toward a z80 native Windows build -- still needs some workpatacongo2012-12-032-7/+8
| | | | git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5411 42af7a65-404d-4744-a932-0658087f49c3
* Convert configs/z80sim/ostest to Kconfig/mconf toolpatacongo2012-12-032-7/+22
| | | | git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5409 42af7a65-404d-4744-a932-0658087f49c3