fresh download rasbpi

This commit is contained in:
Adolfo Reyna
2025-11-01 21:20:26 -04:00
parent b70ec8f5f3
commit 3238f39c7a
11 changed files with 4683 additions and 0 deletions

BIN
.DS_Store vendored

Binary file not shown.

BIN
pico-8/lexaloffle-pico8.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 442 B

72
pico-8/license.txt Executable file
View File

@@ -0,0 +1,72 @@
SOFTWARE LICENSE AGREEMENT FOR PICO-8
This license agreement is between you, the end user, and Lexaloffle Games LLP ("LEXALOFFLE GAMES"). The software licensed under this agreement is PICO-8 ("THE SOFTWARE"), including all data files, executables, documentation and design. By distributing, copying, executing, or otherwise using THE SOFTWARE, you agree to be bound by the terms of this license agreement.
THE SOFTWARE is owned by LEXALOFFLE GAMES. LEXALOFFLE GAMES reserves the exclusive copyright and all rights not expressly granted.
You may install and use THE SOFTWARE on any computers for which you are the primary user. You may additionally install and use THE SOFTWARE concurrently on any number of computers belonging to a single household or educational organisation, including libraries, clubs, schools and universities.
Unless express consent is granted by LEXALOFFLE GAMES, you may not distribute all of or any part of THE SOFTWARE to any other party, create derivative works based on THE SOFTWARE, or sell, resell, rent or lease THE SOFTWARE.
EXPORTED CARTRIDGES
Files generated by exporting a cartridge with PICO-8 (Javascript, HTML, executables and data files) may be used for any purpose, including commercial applications, and to alter them and redistribute them freely, provided that permission to do so is also granted by the authors of the cartridge.
DISCLAIMER
THE SOFTWARE IS PROVIDED "AS-IS" WITHOUT WARRANTY OF ANY KIND. TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, LEXALOFFLE GAMES DISCLAIMS ALL WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, IN NO EVENT SHALL LEXALOFFLE GAMES BE LIABLE FOR ANY DAMAGES WHATSOEVER INCLUDING BUT NOT LIMITED TO ANY LOSS OF PRODUCTIVITY, LOSS OF DATA, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OF, OR INABILITY TO USE THE SOFTWARE, EVEN IF LEXALOFFLE GAMES HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
========================================================================================
PICO-8 is built with Lua 5.2
http://www.lua.org
----- Software License and Copyright Notice for Lua follows -----
Lua 5.2 Copyright © 19942015 Lua.org, PUC-Rio.
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
========================================================================================
PICO-8 is built with rpi_ws281x
https://github.com/jgarff/rpi_ws281x
----- Software License and Copyright Notice for rpi_ws281x follows -----
Copyright (c) 2014, jgarff
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright notice, this
list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

4575
pico-8/pico-8_manual.txt Normal file

File diff suppressed because it is too large Load Diff

BIN
pico-8/pico8 Executable file

Binary file not shown.

BIN
pico-8/pico8.dat Normal file

Binary file not shown.

BIN
pico-8/pico8_64 Executable file

Binary file not shown.

BIN
pico-8/pico8_dyn Executable file

Binary file not shown.

BIN
pico-8/pico8_gpio Executable file

Binary file not shown.

36
pico-8/readme_raspi.txt Normal file
View File

@@ -0,0 +1,36 @@
PICO-8 for Raspberry Pi comes in several flavours included in this archive:
pico8 // 32-bit with custom-built and statically linked sdl2
pico8_dyn // 32-bit, dynamically linked sdl2
pico8_gpio // 32-bit, requires wiringpi for acessing gpio pins (0x5f80..0x5fff)
pico8_64 // For 64-bit Rasperry Pi OS -- requires libsdl2.
:: Installing SDL2
sdl2 is required for pico8_dyn, pico8_gpio and pico8_64. You can make sure it's installed with:
$ sudo apt-get install libsdl2-dev
:: Installing wget
PICO-8 uses wget for bbs downloads. If you have trouble download cartridges or cart listings, try:
$ sudo apt-get install wget
:: Slow Framerate
If you get a warning on boot "warning: running below 30fps", or PICO-8 seems to be running slowly
in fullscreen, it might help to use the legacy OpenGL driver:
$ raspi-config
-> selected "Advanced" and then "GL Drivers"
-> select the legacy gpu driver option

BIN
pico-8_0.2.7a6_raspi.zip Normal file

Binary file not shown.