diff options
author | Nao Pross <naopross@thearcway.org> | 2017-10-19 17:52:58 +0200 |
---|---|---|
committer | Nao Pross <naopross@thearcway.org> | 2017-10-19 17:52:58 +0200 |
commit | fe1ac63fc152ea70bc32b9d514841a5f806838ed (patch) | |
tree | 434d336625c9564ec20ddc2834b72f5551f53856 /sw/z80/tests/pio/build/main.lst | |
parent | Move test units to z80/tests, and drivers are now statically linked (diff) | |
download | z80uPC-fe1ac63fc152ea70bc32b9d514841a5f806838ed.tar.gz z80uPC-fe1ac63fc152ea70bc32b9d514841a5f806838ed.zip |
Fix for PIO driver and its test and deletes build files
Diffstat (limited to 'sw/z80/tests/pio/build/main.lst')
-rw-r--r-- | sw/z80/tests/pio/build/main.lst | 80 |
1 files changed, 0 insertions, 80 deletions
diff --git a/sw/z80/tests/pio/build/main.lst b/sw/z80/tests/pio/build/main.lst deleted file mode 100644 index 4a1a872..0000000 --- a/sw/z80/tests/pio/build/main.lst +++ /dev/null @@ -1,80 +0,0 @@ - 1 ;-------------------------------------------------------- - 2 ; File Created by SDCC : free open source ANSI-C Compiler - 3 ; Version 3.6.0 #9615 (Linux) - 4 ;-------------------------------------------------------- - 5 .module main - 6 .optsdcc -mz80 - 7 - 8 ;-------------------------------------------------------- - 9 ; Public variables in this module - 10 ;-------------------------------------------------------- - 11 .globl _main - 12 .globl _pio_write - 13 .globl _pio_set_mode - 14 ;-------------------------------------------------------- - 15 ; special function registers - 16 ;-------------------------------------------------------- - 17 ;-------------------------------------------------------- - 18 ; ram data - 19 ;-------------------------------------------------------- - 20 .area _DATA - 21 ;-------------------------------------------------------- - 22 ; ram data - 23 ;-------------------------------------------------------- - 24 .area _INITIALIZED - 25 ;-------------------------------------------------------- - 26 ; absolute external ram data - 27 ;-------------------------------------------------------- - 28 .area _DABS (ABS) - 29 ;-------------------------------------------------------- - 30 ; global & static initialisations - 31 ;-------------------------------------------------------- - 32 .area _HOME - 33 .area _GSINIT - 34 .area _GSFINAL - 35 .area _GSINIT - 36 ;-------------------------------------------------------- - 37 ; Home - 38 ;-------------------------------------------------------- - 39 .area _HOME - 40 .area _HOME - 41 ;-------------------------------------------------------- - 42 ; code - 43 ;-------------------------------------------------------- - 44 .area _CODE - 45 ;main.c:3: void main(void) - 46 ; --------------------------------- - 47 ; Function main - 48 ; --------------------------------- - 0000 49 _main:: - 50 ;main.c:7: pio_set_mode(PIO_A, PIO_MODE_BYTE_OUT, 0); - 0000 AF [ 4] 51 xor a, a - 0001 F5 [11] 52 push af - 0002 33 [ 6] 53 inc sp - 0003 21 01 00 [10] 54 ld hl,#0x0001 - 0006 E5 [11] 55 push hl - 0007 2E 00 [ 7] 56 ld l, #0x00 - 0009 E5 [11] 57 push hl - 000A CDr00r00 [17] 58 call _pio_set_mode - 000D F1 [10] 59 pop af - 000E F1 [10] 60 pop af - 000F 33 [ 6] 61 inc sp - 62 ;main.c:9: while (1) { - 0010 0E 00 [ 7] 63 ld c,#0x00 - 0012 64 00102$: - 65 ;main.c:10: pio_write(PIO_A, j++); - 0012 41 [ 4] 66 ld b,c - 0013 0C [ 4] 67 inc c - 0014 C5 [11] 68 push bc - 0015 C5 [11] 69 push bc - 0016 33 [ 6] 70 inc sp - 0017 21 00 00 [10] 71 ld hl,#0x0000 - 001A E5 [11] 72 push hl - 001B CDr00r00 [17] 73 call _pio_write - 001E F1 [10] 74 pop af - 001F 33 [ 6] 75 inc sp - 0020 C1 [10] 76 pop bc - 0021 18 EF [12] 77 jr 00102$ - 78 .area _CODE - 79 .area _INITIALIZER - 80 .area _CABS (ABS) |