Search found 158 matches

by Frank
Thu Dec 29, 2022 7:46 am
Forum: Software
Topic: Question using the cho function
Replies: 3
Views: 16621

Re: Question using the cho function

Well, looks like I made an error in the program. But it still works because there is only 1 memory block defined (which is partly an answer to your question)... FXCore will always read from whatever address you pass to CHR/is calculated by CHR using the LFO even if outside the defined .mem range, it...
by Frank
Wed Dec 21, 2022 7:27 am
Forum: Software
Topic: Windows notepad++ crash Run FXCore 0x30
Replies: 3
Views: 16692

Re: Windows notepad++ crash Run FXCore 0x30

V2.3.0.0 of the assembler posted for all platforms that fixes the issue.
by Frank
Mon Dec 19, 2022 8:45 am
Forum: Software
Topic: Windows notepad++ crash Run FXCore 0x30
Replies: 3
Views: 16692

Re: Windows notepad++ crash Run FXCore 0x30

Looks like something in the HIDSharp library which is an open source library we are using. Will try to get a chance to look into it and see if others that use the library have seen this issue. Can you email me a copy of the code that will generate this error? I want to see if it will also happen her...
by Frank
Wed Dec 07, 2022 7:28 am
Forum: Software
Topic: Is the pitch shifting polyphonic or monophonic in FXCore?
Replies: 1
Views: 16390

Re: Is the pitch shifting polyphonic or monophonic in FXCore?

Poly like FV-1, same basic algorithm but some improvements and a single "pitch" instruction now.
by Frank
Mon Dec 05, 2022 9:10 pm
Forum: Software
Topic: I see references to a GUI assembler, but I don't see a GUI assembler anywhere?
Replies: 2
Views: 16635

Re: I see references to a GUI assembler, but I don't see a GUI assembler anywhere?

The original one was GUI but has been removed as Notepad++ and Sublime Text are better code editors than the one in the GUI. Any old GUI versions floating around are out of date and will not be updated or supported. Additionally assembler is now command line so we could port it to Mac x86/Apple Sili...
by Frank
Wed Nov 16, 2022 8:37 am
Forum: Announcements
Topic: NOTICE: Watch out for fraudulent emails
Replies: 0
Views: 26241

NOTICE: Watch out for fraudulent emails

It has been brought to our attention that some third party is sending out emails claiming to be from one of our distributors asking for copies of invoices, claiming a change in email address, etc. These are fake, none of our distributors or Experimental Noize have changed any contact information or ...
by Frank
Tue Oct 18, 2022 10:48 am
Forum: Software
Topic: Need help with writing to FLASH problem
Replies: 5
Views: 16999

Re: Need help with writing to FLASH problem

My guess is that, without sufficient delay after the write command, the FXCore is still writing the data to flash when the EXIT_PRG command comes so it misses it and the I2C library gets a 'NACK' from the bus. That is exactly what happens, when we are writing the flash everything else is ignored so...
by Frank
Tue Oct 18, 2022 8:30 am
Forum: Software
Topic: Need help with writing to FLASH problem
Replies: 5
Views: 16999

Re: Need help with writing to FLASH problem

Hard so see why as there are so many possible things. Do you have a logic analyzer and able to capture the SDA and SCL lines? We use Saleae devices here so if you have one capture the complete transaction and send us the capture file so we can open it in their s/w. If not a Saleae then use what you ...
by Frank
Tue Oct 11, 2022 4:24 pm
Forum: Software
Topic: Command line assembler
Replies: 45
Views: 56979

Re: Command line assembler

These are my final versions, the batch file detects if a listing file was passed to it and if so assumes it is some form of assemble command and if it detects an error will type out the listing file to highlight the errors in the source window. If no listing file then it will execute the commands as...
by Frank
Fri Oct 07, 2022 9:15 am
Forum: Software
Topic: Command line assembler
Replies: 45
Views: 56979

Re: Command line assembler

When you fixed it you put a bracket ([) in Frank but it should be a brace ({). In math we used to call them 'square brackets' and 'curly brackets' :D So, you used a square bracket, but it should have been a curly bracket! DOH!!!! OK, fixed the fix so it should be fixed. Too many things going on tod...