https://github.com/gerph/debugit
DebugIt module, in JFPatch
https://github.com/gerph/debugit
arm riscos riscos-ci
Last synced: 2 months ago
JSON representation
DebugIt module, in JFPatch
- Host: GitHub
- URL: https://github.com/gerph/debugit
- Owner: gerph
- License: bsd-2-clause
- Created: 2021-07-07T21:42:34.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2026-01-11T19:39:56.000Z (2 months ago)
- Last Synced: 2026-01-11T23:35:18.978Z (2 months ago)
- Topics: arm, riscos, riscos-ci
- Homepage:
- Size: 14.6 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Codeowners: CODEOWNERS
Awesome Lists containing this project
README
# DebugIt module
The DebugIt module is used by lots of the RISC OS source to provide a
really simple way of writing out debug to another part of the system.
Essentially, you can have lots of different DebugIt modules that write
to different places.
The interface for DebugIt is simple - the first SWI of the module
is the equivalent of OS_WriteC, takes a character in R0. The characters
may include CR, LF (or LF, CR) sequences.
This implementation writes to the SysLog module using the log name
`DebugIt`. As can be seen the code is very simple, so feel free to write
some other implementation if necessary.