Skip to content

Commit 12212e7

Browse files
committed
fix for pre release
1 parent c7ce4f6 commit 12212e7

16 files changed

+57
-45
lines changed

.github/workflows/main.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,8 @@ jobs:
136136
git clone https://github.com/orix-software/docker-unit-test.git
137137
cd docker-unit-test && bash install.sh ${GITHUB_WORKSPACE} && cd ..
138138
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
140141
cd ${GITHUB_WORKSPACE}/oricutron
141142
timeout --preserve-status 5 ./xvfb.sh || exit 0
142143

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2023.4
1+
2024.1

memmap.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -291,12 +291,12 @@ CALL:XOPEN:XRM_ROUTINE
291291
|##MEMMAP: Kernel bank 7
292292
|MEMMAP: Type | Name | Range | Size |
293293
|MEMMAP: :-------- |:---------------------------- |:------- |:-----|
294-
|MEMMAP:ROM|FREE |$fef4-$fff0| 252 |
294+
|MEMMAP:ROM|FREE |$fef5-$fff0| 251 |
295295
|##MEMMAP:Bank 0
296296
|MEMMAP: Type | Name | Range | Size |
297297
|MEMMAP: -------- | ---------------------------- | ------- |-----|
298298
|MEMMAP:BANK0|BUFBUF | $c080-$c0b6 | 54 |
299299
|MEMMAP:BANK0|BUFROU | $c500-$c54e | |
300300
|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 | |

modules/src/dummy/main.c

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
#include <stdio.h>
2+
3+
//cl65 --module -t c64 -o $@ loader-arch-module.o $^
4+
5+
int main() {
6+
}

run.sh

+4-3
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,13 @@ ca65 --cpu 6502 -DWITH_SDCARD_FOR_ROOT=1 -DWITH_DEBUG=1 --verbose -s -ttelestra
1919
ld65 -tnone -DWITH_SDCARD_FOR_ROOT=1 -DWITH_DEBUG=1 kdebugsd.ld65 -o kdebug.rom -Ln kdebugsd.sym -m memmap.txt -vm
2020

2121
cp kernel.rom $ORICUTRON_PATH/roms
22-
cp kdebug.rom $ORICUTRON_PATH/roms
22+
# cp kdebug.rom $ORICUTRON_PATH/roms
2323
cp tests/test_kernel $ORICUTRON_PATH/sdcard/bin/test
2424

25-
cp tests/kopened $ORICUTRON_PATH/sdcard/bin/
25+
#cp tests/kopened $ORICUTRON_PATH/sdcard/bin/
2626

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
2829

2930
cd $ORICUTRON_PATH
3031
./oricutron

src/functions/memory/memory_driver.asm

+2-1
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,7 @@ command_not_found_no_inc:
6464
adc RESB
6565
bcc read_command_from_bank_driver_do_not_inc
6666
inc RESB+1
67+
6768
read_command_from_bank_driver_do_not_inc:
6869
sta RESB
6970
inx
@@ -72,6 +73,7 @@ read_command_from_bank_driver_do_not_inc:
7273
; at this step we did not found the command in the rom
7374
exit_to_kernel_ENOENT:
7475
ldy #ENOENT ; error
76+
7577
exit_to_kernel:
7678
lda VIA2::PRA
7779
ora #%00000111 ; Return to telemon
@@ -99,7 +101,6 @@ read_command_from_bank_driver_patch2:
99101

100102
lda #$07 ; Return to telemon
101103
jsr $46A
102-
103104
jsr _XFORK
104105

105106
cpy #EOK

src/functions/process/kernel_exec_from_storage.asm

-2
Original file line numberDiff line numberDiff line change
@@ -478,8 +478,6 @@ open_binary_and_exec:
478478

479479
rts
480480

481-
482-
483481
str_root_bin:
484482
; If you change this path, you need to change .strlen("/bin/") above
485483
.asciiz "/bin/"

src/functions/process/kernel_kill_process.asm

+2-5
Original file line numberDiff line numberDiff line change
@@ -38,13 +38,10 @@
3838

3939
; FIXME use kernel_get_struct_process_ptr routine
4040
jsr kernel_get_struct_process_ptr
41-
;lda kernel_process+kernel_process_struct::kernel_one_process_struct_ptr_low,x
41+
4242
sta RES
4343
sty RES+1
4444

45-
; lda kernel_process+kernel_process_struct::kernel_one_process_struct_ptr_high,x
46-
;sta RES+1
47-
4845
ldy #kernel_one_process_struct::ppid
4946

5047
lda (RES),y ; A contains the PPID
@@ -69,7 +66,7 @@
6966

7067
; restore zp of the PPID
7168

72-
ldx kernel_process+kernel_process_struct::kernel_current_process
69+
ldx kernel_process+kernel_process_struct::kernel_current_process ; $57D
7370
jsr kernel_get_struct_process_ptr
7471
sta RES
7572
sty RES+1

src/functions/process/xexec.asm

+5-3
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,6 @@
4343
lda (TR0),y
4444
beq @S6
4545
sta BUFEDT,y
46-
47-
4846
iny
4947
cpy #110
5048
bne @L7
@@ -62,6 +60,7 @@
6260
cmp #$07
6361
bne @do_not_correct
6462
lda #$05 ; Shell by default
63+
6564
@do_not_correct:
6665
sta KERNEL_KERNEL_XEXEC_BNKOLD
6766

@@ -150,9 +149,13 @@ out1:
150149
stx HRS2+1
151150

152151
skip_sta_hrs2:
152+
153153
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
154156
jsr kernel_kill_process
155157

158+
@no_kill:
156159
ldy #EOK
157160

158161
exit:
@@ -166,7 +169,6 @@ exit:
166169
lda KERNEL_SAVE_XEXEC_CURRENT_SET
167170
sta $343
168171

169-
170172
lda HRS2 ; Return code
171173
ldx HRS2+1
172174

src/functions/process/xexec_replace_process.asm

-3
This file was deleted.

src/functions/process/xfork.asm

+3-8
Original file line numberDiff line numberDiff line change
@@ -35,14 +35,10 @@
3535
bne @perform_fork
3636

3737
; 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
3939
ldx kernel_process+kernel_process_struct::kernel_current_process
40-
;jsr erase_all_chunk_from_current_process
4140

42-
; Change command line
43-
lda kernel_process+kernel_process_struct::kernel_current_process
4441
jsr kernel_get_struct_process_ptr
45-
4642
sty KERNEL_CREATE_PROCESS_PTR1+1
4743
sta KERNEL_CREATE_PROCESS_PTR1
4844

@@ -54,8 +50,6 @@
5450
@S7:
5551
sta KERNEL_CREATE_PROCESS_PTR1
5652

57-
; Shebang management
58-
; Copy new cmdline with #!
5953
ldy #$00
6054

6155
@L10:
@@ -66,11 +60,11 @@
6660
cpy #(KERNEL_LENGTH_MAX_CMDLINE-1)
6761
bne @L10
6862
lda #$00 ; Store 0
63+
6964
@S8:
7065
sta (KERNEL_CREATE_PROCESS_PTR1),y
7166

7267
ldy #EOK
73-
7468
rts
7569

7670
@perform_fork:
@@ -84,6 +78,7 @@
8478

8579
ldx #$00
8680
ldy #kernel_one_process_struct::zp_save_userzp
81+
8782
@L1:
8883
lda userzp,x
8984
sta (RES),y

src/kernel.asm

+3-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
adc #$01
1616
.endmacro
1717

18-
.define VERSION "2023.4"
18+
.define VERSION "2024.1"
1919

2020
XMALLOC_ROUTINE_TO_RAM_OVERLAY = 39
2121

@@ -5035,6 +5035,7 @@ XGOKBD_ROUTINE:
50355035
sta RESB
50365036
sty RESB+1
50375037
ldy #$00
5038+
50385039
loop70:
50395040
ldx #$00
50405041
lda (RESB,x)
@@ -5097,6 +5098,7 @@ next81:
50975098
iny
50985099
bne @skip
50995100
inc RES+1
5101+
51005102
@skip:
51015103
pla
51025104
lsr

src/versions/versions.inc

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@
44
.define KERNEL_VERSION_2023_1 $03
55
.define KERNEL_VERSION_2023_2 $04
66
.define KERNEL_VERSION_2023_3 $05
7-
.define KERNEL_VERSION_2023_4 $06
7+
.define KERNEL_VERSION_2024_1 $06
88

9-
.define CURRENT_VERSION_BINARY KERNEL_VERSION_2023_4
9+
.define CURRENT_VERSION_BINARY KERNEL_VERSION_2024_1

tests/unit_test/verify.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ if [ -e "$MYPATH/STARTED" ]; then
66
echo "Le fichier $MYPATH/STARTED existe."
77
else
88
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"
1010
exit 1
1111
fi
1212

tests/unit_test/xopen.sub

+11-11
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,19 @@
22

33
touch started
44

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
78
touch /toto
89
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+
1818

1919

2020

tests/unit_test/xrm.sub

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
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

0 commit comments

Comments
 (0)