Search found 130 matches

by gray
Sat Apr 12, 2025 4:20 am
Forum: Raspberry Pi RP2040 and RP2350
Topic: Oberon RTK Updates
Replies: 15
Views: 2394537

Re: Oberon RTK Updates

by gray
Sun Mar 30, 2025 8:02 am
Forum: Raspberry Pi RP2040 and RP2350
Topic: Oberon RTK Updates
Replies: 15
Views: 2394537

Re: Oberon RTK Updates

Latest changes and updates: https://oberon-rtk.org/updates/2025/cn-2025-03-30/ No framework changes are ready to commit, but an overhauled website, which should allow both a better overview, as well as easier access to the details: https://oberon-rtk.org/ GitHub repository: https://github.com/ygrayn...
by gray
Wed Mar 12, 2025 8:58 am
Forum: Raspberry Pi RP2040 and RP2350
Topic: Oberon RTK Updates
Replies: 15
Views: 2394537

Re: Oberon RTK Updates

by gray
Thu Mar 06, 2025 11:20 am
Forum: Raspberry Pi RP2040 and RP2350
Topic: Oberon RTK Updates
Replies: 15
Views: 2394537

Re: Oberon RTK Updates

Latest changes and updates: https://oberon-rtk.org/updates/2025/cn-2025-03-06/

Main focus: basis to get the Astrobe tools running on macOS.

Website: https://oberon-rtk.org/
GitHub repository: https://github.com/ygrayne/oberon-rtk
by gray
Thu Feb 27, 2025 1:44 pm
Forum: Raspberry Pi RP2040 and RP2350
Topic: Oberon RTK Updates
Replies: 15
Views: 2394537

Re: Oberon RTK Updates

I'd be interested in this, even in its current state without polish, guardrails, and packaging as a published Package Control-managed/delivered package. Would you be willing to send it to me? Hi dnm, sure, send me your e-mail address to gray@grayraven.org. I am in the midst of getting things workin...
by gray
Sun Feb 16, 2025 11:24 am
Forum: Raspberry Pi RP2040 and RP2350
Topic: Oberon RTK Updates
Replies: 15
Views: 2394537

Re: Oberon RTK Updates

by gray
Sun Feb 09, 2025 11:25 pm
Forum: Astrobe for Raspberry Pi RP2040 and RP2350
Topic: Program Counter
Replies: 3
Views: 39658

Re: Program Counter

Well, I think you are underplaying your role and work here! I mean, if I look at the (version) history… :)

Is the original source code NW's ARM compiler available, as it is for Project Oberon?
by gray
Thu Feb 06, 2025 11:24 am
Forum: Astrobe for Raspberry Pi RP2040 and RP2350
Topic: Program Counter
Replies: 3
Views: 39658

Program Counter

J. Yiu states for both the M0+ (RP2040) and M33 (RP2350) that the program counter (PC) is the address of the current instruction plus 4 [1][2]. The Astrobe docs say that the RP2040's PC is four bytes ahead of the current instruction, while the RP2350 is eight bytes ahead. The Arm v8-M manual says th...
by gray
Thu Feb 06, 2025 10:39 am
Forum: Oberon Language
Topic: Conditional Compilation
Replies: 6
Views: 385177

Re: Conditional Compilation

Thanks for the clarification. And this strictly works with BOOLEAN CONSTs only, correct? With this facility, we could now structure modules thusly. MODULE Variant; CONST RP2040* = TRUE; RP2350* = FALSE; END Variant. MODULE M; IMPORT Variant; PROCEDURE Init*; BEGIN IF Variant.RP2040 THEN (* ... *) EL...
by gray
Wed Feb 05, 2025 11:50 pm
Forum: Oberon Language
Topic: Conditional Compilation
Replies: 6
Views: 385177

Re: Conditional Compilation

Thank you for your explanations and example code. Nested IFs are only ever eliminated if the IF statement that contains them is eliminated. Hence, to be sure I understand this correctly, using your example code: CONST T0 = TRUE; F1 = FALSE; PROCEDURE P4(); BEGIN IF T0 THEN IF F1 THEN Included() (* ?...