This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| -- FM7 Polyphonic Synthesizer | |
| -- With 6 Operator Frequency | |
| -- And wrms | |
| -- Modulation | |
| -- /////////////////////////// | |
| -- key 2: random phase mods | |
| -- key 3: play a random note | |
| -- /////////////////////////// | |
| -- grid pattern player: | |
| -- 1-16 1 high voice |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| processor 6502 | |
| MACRO DELAY ;; {1} - loop iterations | |
| ldx {1} | |
| .loop: | |
| dex | |
| bne .loop | |
| ENDM | |
| MACRO RASTER ;; {1} - background color to set |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| -- | |
| -- wrms/lite | |
| -- | |
| -- simple stereo delay & looper | |
| -- | |
| -- version 2.0.0 @andrew | |
| -- https://norns.community/ | |
| -- authors/andrew/ | |
| -- wrms#wrmslite | |
| -- |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // On iOS 16 I see that the reader indicates it is ready, the stream has 10 characters | |
| // available to read, and the loop executes printing each character out line by line. | |
| // | |
| // With no changes, on iOS 17 beta I see that the reader indicates it is ready, the first | |
| // byte is read, but the loop only executes once printing 65533 and exiting. | |
| func testDecodeStream() { | |
| let testString = "{testtest}" | |
| let data = testString.data(using: .utf8) | |
| let byteArray = IOSByteArray(nsData: data) | |
| let stream: JavaIoInputStream = JavaIoByteArrayInputStream(byteArray: byteArray) |
OlderNewer