Markus Gyger
Markus Gyger
This is how the bookmarks could look like if they would be more user-friendly: 
I guess this applies more to the RP2350 datasheet but the PIOASM chapter is shared with the SDK. For example, under `3.4.4. JMP` → `3.4.4.2. Operation`, there is `EXECCTRL_JMP_PIN` mentioned...
It looks like I mixed up the repositories, and that part is a duplicate of https://github.com/raspberrypi/pico-feedback/issues/437. #2129 is possibly also related.
> > 4.1.15.11.3. Function Documentation: sm_config_set_mov_status > > I can't see any problem here?? Maybe it's fixed now, but in the 20 February 2025 PDF (bottom of page 239), the...
Possibly (but then maybe _put_ and _get_ need also to be exchanged?). In the RP2350 datasheet, there is `PINCTRL_JMP_PIN` mentioned twice. This should probably be one of the other used...
Maybe the frequency of all-caps words in the docs could help to detect such instances (but of course nowadays AI could probably be directed to do such).
It looks like the description of [`__uninitialized_ram(group)`](https://www.raspberrypi.com/documentation/pico-sdk/runtime.html#group_pico_platform_1ga118d39a4ebb425b8bef29e7a1f8731c2) should have dash and/or closing parenthesis somehow changed and the description of parameter `group` extended that it would also specify the name of...
I think it isn't as simple as it might look like. I think, currently, instructions and symbols use the same namespace. Any program that is using a symbol (or label)...
Let's say you had the following code already: ``` .program test jmp x--, dec dec: nop ``` This currently works fine because `dec` isn't an instruction yet. To emulate that,...
My point is that it would be easier to do after some internal cleanup (separation of symbols, instructions, operands, directives; proper expressions; conditional assembly; etc.). Requests for `pioasm` have been...