Stefan Drissen
Stefan Drissen
Could this be handled automatically? ```` DEFINE VARIABLE cresponse AS CHARACTER NO-UNDO. DEFINE VARIABLE oMemptr AS OpenEdge.Core.Memptr NO-UNDO. oMemptr = New OpenEdge.Core.Memptr(). cresponse = oMemptr:GetString( 1, 30000 ). ```` The...
I activated this rule today, it seems to be checking the underlying table and not the actual buffer being used: ```` block-level on error undo, throw. define buffer customer for...
We have quite some conditional compilation as follows: ```` function foo returns logical ( ): return true. end function. &if somecondition &then function bar returns logical ( ): return true....
I just ran into some silly optimization by myself where I moved an ``if`` condition into the query phrase: ```` def var cfilter as char. define temp-table tt field cc...
### 🐛 Describe the bug Using 2.03, when importing Ocean Loader V1, the decompiled and compiled tunes have (different) issues ### 🕹 Steps to reproduce the behavior 1. import [Ocean...
Just ran into [jsbeeb](https://bbc.godbolt.org/?autoboot&disc=https://dl.dropboxusercontent.com/s/g42tisr6u47jj4j/RWOOD.ssd) via [this thread](https://spectrumcomputing.co.uk/forums/viewtopic.php?f=31&t=6824) on spectrumcomputing.co.uk, the disk loading noises are wonderful! Can we have them on SimCoupe too please. :-)
Currently I am writing unit tests for every module I write. From pyz80 the tests are wrapped in conditional assembly blocks witth ``if defined(unittest)``. The tests indicate success or failure...
This may be a bit of an oddity. When the ROM is paged in and ``rst 0x28`` is executed, the following bytes could be shown as floating point calculator command...
While the trace can be useful tracking down bugs, a rewind feature would be even better! Combine rewind with conditional break points and you have a bug destroyer :-)
Real code: ```` @loop: @var.L: ld hl,0 ; 0 @var.R: ld de,0 ; size / 5 ```` simice only shows ``@loop`` As I workaround I can adjust my code to:...