Skip to content

Develop #140

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 14 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,9 +72,9 @@ jobs:
- name: Prepare environment for oricutron
if: steps.cache-sdk.outputs.cache-hit != 'true'
run: |
sudo apt-get install -y xvfb libgtk-3-0 libgtk-3-dev libsdl1.2debian libsdl1.2-dev
sudo apt-get update && sudo apt-get install -y xvfb libgtk-3-0 libgtk-3-dev libsdl1.2debian libsdl1.2-dev && sudo ldconfig
git clone https://github.com/pete-gordon/oricutron.git
cd oricutron && make && pwd && cd .. && ls -l && echo ${GITHUB_WORKSPACE}
cd oricutron && make && pwd && cp /usr/lib/x86_64-linux-gnu/libSDL-1.2.so.0 . && ls -l && cd .. && ls -l && echo ${GITHUB_WORKSPACE}
echo Timeout oricutron : $secret.TMOUT_ORICUTRON

# - name: Compile orix-sdk
Expand Down Expand Up @@ -134,8 +134,8 @@ jobs:
cp build/usr/share/shell/shellsd.rom ${GITHUB_WORKSPACE}/oricutron/roms/shell.rom
cat tests/unit-tests/commands.sub > ${GITHUB_WORKSPACE}/oricutron/sdcard/ETC/AUTOBOOT
#cat tests/unit_test/xrm.sub >> ${GITHUB_WORKSPACE}/oricutron/sdcard/ETC/AUTOBOOT
cd ${GITHUB_WORKSPACE}/oricutron
timeout --preserve-status 10 ./xvfb.sh || exit 0
cd ${GITHUB_WORKSPACE}/oricutron && ls -l && sudo ldconfig && sudo apt-get update && sudo apt-get install -y xvfb libgtk-3-0 libgtk-3-dev libsdl1.2debian libsdl1.2-dev
timeout --preserve-status 20 ./xvfb.sh || exit 0

- name: Check unit-test
run: |
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2024.1
2024.3
53 changes: 36 additions & 17 deletions docs/basic11.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,41 @@
# basic11

## Usage
## NAME

basic11 [-g] [-l] [-p defaultpath]
basic11 - start atmos rom

## SYNOPSYS

basic11 [OPTION]... ["FILE]

## DESCRIPTION

This command starts the atmos rom. This rom did not test RAM and cload/csave are done on sdcard. It means that it calls file from sdcard.

Cload works with .tap file. Multitap files works too.

Get a tape file, and place it in the root folder of the sdcard.

-g
Start interface

-l
list available .tap

-p path
Set Default path to find .tap file

-r [id_rom]
Set type of rom to load (value = 0, 1, 2)

-v
Displays version

-h
Displays help

"MYTAPE
Load MYTAPE

## Introduction

Expand Down Expand Up @@ -150,21 +183,7 @@ not done.
Some others games uses special keys (SHIFT, CTRL) for direction or the first button. Theses cases are not handle yet : but it
could in the future.

## SYNOPSYS

+ basic11
+ basic11 -g
+ basic11 -l
+ basic11 -p path
+ basic11 "MYTAPE

## DESCRIPTION

This command starts the atmos rom. This rom did not test RAM and cload/csave are done on sdcard. It means that it calls file from sdcard.

Cload works with .tap file. Multitap files works too.

Get a tape file, and place it in the root folder of the sdcard.
## Example

Starts basic11 :

Expand Down
Loading
Loading