0
0
Fork 0
mirror of https://git.sr.ht/~rabbits/uxn synced 2024-11-21 21:35:11 +00:00
Commit graph

2263 commits

Author SHA1 Message Date
Devine Lu Linvega
fac4acb717 Console EOF patch 2024-11-18 16:48:19 -08:00
Devine Lu Linvega
1538b1bf72 Removed uxn instance passing in audio_deo 2024-11-12 08:47:14 -08:00
Devine Lu Linvega
0ba5ef6406 Increased max cycles 2024-11-12 08:45:08 -08:00
Devine Lu Linvega
ca42e1209d (uxncli) Cleanup 2024-11-11 12:56:32 -08:00
ctrlaltmilk
06ef423f58 feat: add step limit to prevent infinite loops
On Linux, when uxnemu enters an infinite loop, the only way to stop
it is to send SIGKILL to it. This makes debugging infinite loops very
annoying. This patch adds a step limit per execution, which should be
well out of the realm of a plausible use, and helps stop infinite
loops.
2024-11-10 11:40:17 -08:00
Devine Lu Linvega
30ac4bdcb1 Muted a few warnings 2024-10-19 10:51:34 -07:00
d_m
f8c53f59b0 Fix a bug in stat_size 2024-09-20 19:31:16 -07:00
d_m
df51651789 Update file_stat to match the existing documentation.
Previously, writing to the stat port would produce a line of text
similar to the listing used when reading a directory. This did not
match the documentation around the stat port.

After the change, writing an address to the stat port will fill that
address with bytes equal to the length parameter. These will either be
a hexadecimal file size, or else the same character repeated N times
according to the following logic:

 - path is a directory
 ? file size of path does not fit in N hexadecimal characters
 ! path is not readable

Note that unlike when reading a directory, the string will not include
the requested path, a newline, or a null terminator.
2024-09-19 14:06:03 -07:00
Devine Lu Linvega
0da4c3335d Merge branch 'main' of git.sr.ht:~rabbits/uxn 2024-09-17 18:10:02 -07:00
d_m
e772d56936 Support creating directories
Previously Varvara did not have a way to create new directories.
This change adds that capability without adding or modifying any
device ports.

The changes are:

 (1) When a filename ends in the directory separator, writing
     any value to File/write will create a directory. Unlike
     with regular files, the value is ignored.

 (2) When writing any path (regular files or directories) if
     there are missing parent directories Varvara will attempt
     to create them first. This behavior is similar to mkdir -p.

The directory separator is / on most platforms, and \ on Windows.
On POSIX platforms the directories will be created with permission
0755 (modified by the user's umask value).

This change has been tested and works in both uxnemu and uxncli.
2024-09-17 18:09:14 -07:00
Sigrid Solveig Haflínudóttir
ea4aaca2a6 fix a clang warning 2024-08-29 19:43:00 +02:00
Sigrid Solveig Haflínudóttir
1e9795e179 fix all the warnings 2024-08-29 17:21:18 +02:00
Sigrid Solveig Haflínudóttir
f3bc19a3e7 uxn core: enum -> const int; kencc does not like the same idents 2024-08-29 17:18:13 +02:00
Sigrid Solveig Haflínudóttir
5dcf31beec fix Plan 9 build 2024-08-29 17:08:10 +02:00
Devine Lu Linvega
6d5e3848bd (uxnasm) Check against label/macro overlaps 2024-08-25 10:19:19 -07:00
Devine Lu Linvega
af59c09627 (uxnasm) Fixed issue where some unused labels did not throw a warning 2024-08-25 10:05:47 -07:00
Devine Lu Linvega
58d6594790 Silenced a few warnings 2024-08-25 09:26:18 -07:00
Devine Lu Linvega
14ff615b8d (pond.tal) Added a little demo that draws circles 2024-08-24 16:31:37 -07:00
Devine Lu Linvega
2d851369ec (pond.tal) Progress 2024-08-24 10:03:38 -07:00
Devine Lu Linvega
d6c14dd24d (pond.tal) Starting new demo 2024-08-24 09:49:55 -07:00
Devine Lu Linvega
3a901ed0be (uxn.c) Removed need for stack pointer 2024-08-12 13:11:42 -07:00
Devine Lu Linvega
7d077eb2c6 Print 8 items on the stack 2024-08-11 13:30:23 -07:00
Devine Lu Linvega
a9d7ff23a5 Tiny changes to the uxn core macros 2024-08-05 15:13:08 -07:00
Devine Lu Linvega
bf10311d5a Force a redraw on screen change 2024-07-26 10:09:03 -07:00
Devine Lu Linvega
2f73bae07e Trying to tackle issue with undrawn region on screen 2024-07-26 08:54:22 -07:00
Devine Lu Linvega
c1c9487057 Use global uxn instance for the audio thread 2024-07-26 07:57:08 -07:00
Devine Lu Linvega
21ce072e9d Fixed stack debugger 2024-07-15 13:41:02 -07:00
Devine Lu Linvega
215dc9db52 Updated devices 2024-07-15 12:12:10 -07:00
Devine Lu Linvega
1c74aa1731 (bifurcan) Improved responsiveness 2024-06-15 19:25:15 -08:00
Devine Lu Linvega
31b282d5de (bifurcan) Housekeeping 2024-06-15 18:27:58 -08:00
Devine Lu Linvega
07112d8f26 (neralie) Moved to uxn-utils 2024-06-14 10:46:12 -08:00
Devine Lu Linvega
598846a1b8 (dvd.tal) Change opcode not value 2024-06-05 08:09:40 -08:00
Devine Lu Linvega
987a3348a6 Fixed issue with invalid hexadecimal values 2024-05-30 18:37:49 -07:00
Devine Lu Linvega
bb57b85f57 Fixed issue with comments in macros, fixed by jjbliss 2024-05-10 08:15:27 -07:00
Devine Lu Linvega
3a696f8fa9 Removed old tests 2024-05-06 08:23:27 -07:00
Devine Lu Linvega
b0bfb38dcc Fixed typo in system expansion test 2024-04-15 17:12:24 -07:00
Devine Lu Linvega
b7d80643e8 Fix non-ASCII bytes being detected as whitespace 2024-04-13 19:31:09 -07:00
Devine Lu Linvega
41567558bc (mandelbrot) Improvements from d6 2024-04-05 09:14:03 -07:00
Devine Lu Linvega
11d32db150 (uxnasm) Print token during nested macro error 2024-04-03 21:08:17 -07:00
Devine Lu Linvega
fc7ae4301c (uxnasm) Only find hex glyph once 2024-04-03 20:58:55 -07:00
Devine Lu Linvega
182c727680 (uxnasm) Report the correct line number in references 2024-04-03 20:35:24 -07:00
Devine Lu Linvega
aae4446dfb (uxnasm) References print file and line number 2024-04-03 20:21:13 -07:00
Devine Lu Linvega
ab2dd4082a (uxnasm) No context for findopcode 2024-04-03 19:46:50 -07:00
Devine Lu Linvega
4331025178 (uxnasm) Report unknown mode 2024-04-03 19:37:16 -07:00
Devine Lu Linvega
a74df86d06 (uxnasm) Fixed issue with skipped last token in include 2024-04-03 19:20:10 -07:00
Devine Lu Linvega
9564868464 (uxnasm) Fixed issue with long hex values 2024-04-03 09:08:28 -07:00
Devine Lu Linvega
01135b0bb4 (uxnasm) Allow lambdas in macros 2024-04-02 15:13:26 -07:00
Devine Lu Linvega
fde8305d65 (uxnasm) Start line number at 1 2024-04-02 08:38:19 -07:00
Devine Lu Linvega
fc6ec0b387 (uxnasm) Improved errors 2024-03-30 20:05:52 -07:00
Lobo Torres
f6cda36187 (uxnasm) Explicit error for empty rom 2024-03-29 11:36:57 -07:00