File tree 16 files changed +57
-45
lines changed
16 files changed +57
-45
lines changed Original file line number Diff line number Diff line change @@ -136,7 +136,8 @@ jobs:
136
136
git clone https://github.com/orix-software/docker-unit-test.git
137
137
cd docker-unit-test && bash install.sh ${GITHUB_WORKSPACE} && cd ..
138
138
cp build/usr/share/kernel/kernelsd.rom ${GITHUB_WORKSPACE}/oricutron/roms/kernel.rom
139
- cp tests/unit_test/xopen.sub ${GITHUB_WORKSPACE}/oricutron/sdcard/ETC/AUTOBOOT
139
+ cat tests/unit_test/xopen.sub > ${GITHUB_WORKSPACE}/oricutron/sdcard/ETC/AUTOBOOT
140
+ cat tests/unit_test/xrm.sub >> ${GITHUB_WORKSPACE}/oricutron/sdcard/ETC/AUTOBOOT
140
141
cd ${GITHUB_WORKSPACE}/oricutron
141
142
timeout --preserve-status 5 ./xvfb.sh || exit 0
142
143
Original file line number Diff line number Diff line change 1
- 2023.4
1
+ 2024.1
Original file line number Diff line number Diff line change @@ -291,12 +291,12 @@ CALL:XOPEN:XRM_ROUTINE
291
291
|##MEMMAP: Kernel bank 7
292
292
| MEMMAP: Type | Name | Range | Size |
293
293
| MEMMAP: :-------- | :---------------------------- | :------- | :-----|
294
- | MEMMAP: ROM | FREE | $fef4 -$fff0| 252 |
294
+ | MEMMAP: ROM | FREE | $fef5 -$fff0| 251 |
295
295
|##MEMMAP: Bank 0
296
296
| MEMMAP: Type | Name | Range | Size |
297
297
| MEMMAP: -------- | ---------------------------- | ------- | -----|
298
298
| MEMMAP: BANK0 | BUFBUF | $c080-$c0b6 | 54 |
299
299
| MEMMAP: BANK0 | BUFROU | $c500-$c54e | |
300
300
| MEMMAP: BANK0 | TELEMON_KEYBOARD_BUFFER_BEGIN | $c5c4-$c680 | |
301
- | MEMMAP: BANK0 | XMALLOC (copy from kernel) | $fba6-$fc52 | |
302
- | MEMMAP: BANK0 | XFREE (copy from kernel) | $fc52-$fed7 | |
301
+ | MEMMAP: BANK0 | XMALLOC (copy from kernel) | $fba7-$fc53 | |
302
+ | MEMMAP: BANK0 | XFREE (copy from kernel) | $fc53-$fed8 | |
Original file line number Diff line number Diff line change
1
+ #include <stdio.h>
2
+
3
+ //cl65 --module -t c64 -o $@ loader-arch-module.o $^
4
+
5
+ int main () {
6
+ }
Original file line number Diff line number Diff line change @@ -19,12 +19,13 @@ ca65 --cpu 6502 -DWITH_SDCARD_FOR_ROOT=1 -DWITH_DEBUG=1 --verbose -s -ttelestra
19
19
ld65 -tnone -DWITH_SDCARD_FOR_ROOT=1 -DWITH_DEBUG=1 kdebugsd.ld65 -o kdebug.rom -Ln kdebugsd.sym -m memmap.txt -vm
20
20
21
21
cp kernel.rom $ORICUTRON_PATH /roms
22
- cp kdebug.rom $ORICUTRON_PATH /roms
22
+ # cp kdebug.rom $ORICUTRON_PATH/roms
23
23
cp tests/test_kernel $ORICUTRON_PATH /sdcard/bin/test
24
24
25
- cp tests/kopened $ORICUTRON_PATH /sdcard/bin/
25
+ # cp tests/kopened $ORICUTRON_PATH/sdcard/bin/
26
26
27
- cp tests/unit_test/xopen.sub $ORICUTRON_PATH /sdcard/etc/AUTOBOOT
27
+ # cat tests/unit_test/xopen.sub > $ORICUTRON_PATH/sdcard/etc/AUTOBOOT
28
+ # cat tests/unit_test/xrm.sub >> $ORICUTRON_PATH/sdcard/etc/AUTOBOOT
28
29
29
30
cd $ORICUTRON_PATH
30
31
./oricutron
Original file line number Diff line number Diff line change @@ -64,6 +64,7 @@ command_not_found_no_inc:
64
64
adc RESB
65
65
bcc read_command_from_bank_driver_do_not_inc
66
66
inc RESB+1
67
+
67
68
read_command_from_bank_driver_do_not_inc:
68
69
sta RESB
69
70
inx
@@ -72,6 +73,7 @@ read_command_from_bank_driver_do_not_inc:
72
73
; at this step we did not found the command in the rom
73
74
exit_to_kernel_ENOENT:
74
75
ldy #ENOENT ; error
76
+
75
77
exit_to_kernel:
76
78
lda VIA2::PRA
77
79
ora #%00000111 ; Return to telemon
@@ -99,7 +101,6 @@ read_command_from_bank_driver_patch2:
99
101
100
102
lda #$07 ; Return to telemon
101
103
jsr $46A
102
-
103
104
jsr _XFORK
104
105
105
106
cpy #EOK
Original file line number Diff line number Diff line change @@ -478,8 +478,6 @@ open_binary_and_exec:
478
478
479
479
rts
480
480
481
-
482
-
483
481
str_root_bin:
484
482
; If you change this path, you need to change .strlen("/bin/") above
485
483
.asciiz "/bin/"
Original file line number Diff line number Diff line change 38
38
39
39
; FIXME use kernel_get_struct_process_ptr routine
40
40
jsr kernel_get_struct_process_ptr
41
- ;lda kernel_process+kernel_process_struct::kernel_one_process_struct_ptr_low,x
41
+
42
42
sta RES
43
43
sty RES+1
44
44
45
- ; lda kernel_process+kernel_process_struct::kernel_one_process_struct_ptr_high,x
46
- ;sta RES+1
47
-
48
45
ldy #kernel_one_process_struct::ppid
49
46
50
47
lda (RES),y ; A contains the PPID
69
66
70
67
; restore zp of the PPID
71
68
72
- ldx kernel_process+kernel_process_struct::kernel_current_process
69
+ ldx kernel_process+kernel_process_struct::kernel_current_process ; $57D
73
70
jsr kernel_get_struct_process_ptr
74
71
sta RES
75
72
sty RES+1
Original file line number Diff line number Diff line change 43
43
lda (TR0),y
44
44
beq @S6
45
45
sta BUFEDT,y
46
-
47
-
48
46
iny
49
47
cpy #110
50
48
bne @L7
62
60
cmp #$07
63
61
bne @do_not_correct
64
62
lda #$05 ; Shell by default
63
+
65
64
@do_not_correct:
66
65
sta KERNEL_KERNEL_XEXEC_BNKOLD
67
66
@@ -150,9 +149,13 @@ out1:
150
149
stx HRS2+1
151
150
152
151
skip_sta_hrs2:
152
+
153
153
lda kernel_process+kernel_process_struct::kernel_current_process
154
+ cmp #$01 ; Dans le cas d'exec, il y a 2 kill qui se font FIXME bug
155
+ beq @no_kill
154
156
jsr kernel_kill_process
155
157
158
+ @no_kill:
156
159
ldy #EOK
157
160
158
161
exit:
@@ -166,7 +169,6 @@ exit:
166
169
lda KERNEL_SAVE_XEXEC_CURRENT_SET
167
170
sta $343
168
171
169
-
170
172
lda HRS2 ; Return code
171
173
ldx HRS2+1
172
174
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 35
35
bne @perform_fork
36
36
37
37
; At this step we replace the process
38
- ; ; Let's free all memory from this process
38
+ ; Let's free all memory from this process
39
39
ldx kernel_process+kernel_process_struct::kernel_current_process
40
- ;jsr erase_all_chunk_from_current_process
41
40
42
- ; Change command line
43
- lda kernel_process+kernel_process_struct::kernel_current_process
44
41
jsr kernel_get_struct_process_ptr
45
-
46
42
sty KERNEL_CREATE_PROCESS_PTR1+1
47
43
sta KERNEL_CREATE_PROCESS_PTR1
48
44
54
50
@S7:
55
51
sta KERNEL_CREATE_PROCESS_PTR1
56
52
57
- ; Shebang management
58
- ; Copy new cmdline with #!
59
53
ldy #$00
60
54
61
55
@L10:
66
60
cpy #(KERNEL_LENGTH_MAX_CMDLINE-1 )
67
61
bne @L10
68
62
lda #$00 ; Store 0
63
+
69
64
@S8:
70
65
sta (KERNEL_CREATE_PROCESS_PTR1),y
71
66
72
67
ldy #EOK
73
-
74
68
rts
75
69
76
70
@perform_fork:
84
78
85
79
ldx #$00
86
80
ldy #kernel_one_process_struct::zp_save_userzp
81
+
87
82
@L1:
88
83
lda userzp,x
89
84
sta (RES),y
Original file line number Diff line number Diff line change 15
15
adc #$01
16
16
.endmacro
17
17
18
- .define VERSION "2023.4 "
18
+ .define VERSION "2024.1 "
19
19
20
20
XMALLOC_ROUTINE_TO_RAM_OVERLAY = 39
21
21
@@ -5035,6 +5035,7 @@ XGOKBD_ROUTINE:
5035
5035
sta RESB
5036
5036
sty RESB+1
5037
5037
ldy #$00
5038
+
5038
5039
loop70:
5039
5040
ldx #$00
5040
5041
lda (RESB,x)
@@ -5097,6 +5098,7 @@ next81:
5097
5098
iny
5098
5099
bne @skip
5099
5100
inc RES+1
5101
+
5100
5102
@skip:
5101
5103
pla
5102
5104
lsr
Original file line number Diff line number Diff line change 4
4
.define KERNEL_VERSION_2023_1 $03
5
5
.define KERNEL_VERSION_2023_2 $04
6
6
.define KERNEL_VERSION_2023_3 $05
7
- .define KERNEL_VERSION_2023_4 $06
7
+ .define KERNEL_VERSION_2024_1 $06
8
8
9
- .define CURRENT_VERSION_BINARY KERNEL_VERSION_2023_4
9
+ .define CURRENT_VERSION_BINARY KERNEL_VERSION_2024_1
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ if [ -e "$MYPATH/STARTED" ]; then
6
6
echo " Le fichier $MYPATH /STARTED existe."
7
7
else
8
8
echo " Le fichier $MYPATH /STARTED n'existe pas."
9
- echo " Le script submit n'a pas été lancé ou touch à un pb"
9
+ echo " Le script submit n'a pas été lancé ou touch à un pb, vérifier le timeout "
10
10
exit 1
11
11
fi
12
12
Original file line number Diff line number Diff line change 2
2
3
3
touch started
4
4
5
- # touch test XOPEN O_CREAT only
6
- echo -n Testing XOPEN O_CREAT
5
+ # XOPEN O_CREAT only (touch test )
6
+ echo ^[TTest XOPEN
7
+ echo -n O_CREAT
7
8
touch /toto
8
9
if exist /toto echo ^[B [OK]
9
- echo -n Testing XRM
10
- rm /toto
11
- if exist /toto goto error_rm
12
- echo ^[B [OK]
13
- exit
14
-
15
- :error_rm
16
- echo ^[A il y a un dysfonctionnement avec rm, le fichier n'a pas été supprimé
17
- exit
10
+
11
+ # XOPEN O_RDONLY only AND O_WRONLY|O_CREAT
12
+ echo -n O_RDONLY & O_WRONLY|O_CREAT
13
+
14
+ cp started starcop
15
+ if exist /starcop echo ^[B [OK]
16
+
17
+
18
18
19
19
20
20
Original file line number Diff line number Diff line change
1
+ #! /bin/submit
2
+
3
+ echo -n ^[TTest XRM
4
+ rm /toto
5
+ if exist /toto goto error_rm
6
+ echo ^[B [OK]
7
+ dump
8
+ exit
9
+
10
+ :error_rm
11
+ echo ^[A il y a un dysfonctionnement avec rm, le fichier n'a pas été supprimé
12
+ exit
You can’t perform that action at this time.
0 commit comments