Megalextoria
Retro computing and gaming, sci-fi books, tv and movies and other geeky stuff.

Home » Digital Archaeology » Computer Arcana » Apple » Apple II Emulation » Jace updates
Show: Today's Messages :: Show Polls :: Message Navigator
E-mail to friend 
Switch to threaded view of this topic Create a new topic Submit Reply
Jace updates [message #331477] Sat, 05 November 2016 12:04 Go to next message
BLuRry is currently offline  BLuRry
Messages: 489
Registered: October 2012
Karma: 0
Senior Member
After switching back to Windows, I found that some things in Jace were not working as well as they had in other platforms. I have updated Jace with the following:

- ACME assembly now works on Windows: NestedVM was internally not handling windows paths correctly so this was breaking the JUnit build tests on Windows as well as trying to assemble from the IDE (ctrl+shift+i to invoke)

- Applesoft programs now run without crashing when editing from the IDE. I wasn't clearing the variable state correctly and that was causing variables to overwrite the program (whoops!) Thanks to all who reported it. It's fixed now. You can now use JACE to enter very, very long applesoft lines if you want but remember you still have a 256 token/character limit (I think....)

On my surface book, I'm not getting sound so that will be the next thing to be fixed it would seem. :)

The latest 2.0-Stable build can be found here:
https://github.com/badvision/jace/releases
Jace updates [message #332604 is a reply to message #331477] Sun, 20 November 2016 09:57 Go to previous messageGo to next message
BLuRry is currently offline  BLuRry
Messages: 489
Registered: October 2012
Karma: 0
Senior Member
There was a bug when you used the IDE to enter basic programs they would run fine but not save correctly. That has been fixed. That resolves the ide issues that I am presently aware of.
Re: Jace updates [message #333481 is a reply to message #331477] Sat, 03 December 2016 18:21 Go to previous messageGo to next message
Anonymous
Karma:
Originally posted by: John Public

> The latest 2.0-Stable build can be found here:
> https://github.com/badvision/jace/releases

I forgot how to write a 6502 trace to disk and can't seem to find it in the
documentation. Thanks. :)
Re: Jace updates [message #336957 is a reply to message #333481] Tue, 07 February 2017 19:14 Go to previous messageGo to next message
Anonymous
Karma:
Originally posted by: John Public

On Saturday, December 3, 2016 at 3:21:04 PM UTC-8, John Public wrote:
>> The latest 2.0-Stable build can be found here:
>> https://github.com/badvision/jace/releases
>
> I forgot how to write a 6502 trace to disk and can't seem to find it in the
> documentation. Thanks. :)

So does anyone know what it is? I want to write a 6502 trace to my hard drive.
Re: Jace updates [message #337816 is a reply to message #336957] Mon, 20 February 2017 00:22 Go to previous messageGo to next message
BLuRry is currently offline  BLuRry
Messages: 489
Registered: October 2012
Karma: 0
Senior Member
On Tuesday, February 7, 2017 at 6:14:26 PM UTC-6, John Public wrote:
> On Saturday, December 3, 2016 at 3:21:04 PM UTC-8, John Public wrote:
>>> The latest 2.0-Stable build can be found here:
>>> https://github.com/badvision/jace/releases
>>
>> I forgot how to write a 6502 trace to disk and can't seem to find it in the
>> documentation. Thanks. :)
>
> So does anyone know what it is? I want to write a 6502 trace to my hard drive.

Oh, stupid emulation author didn't follow his own post to see your question (SORRY) You have two options:

1) From the CPU config (ctrl+shift+C) you can enable trace to STD OUT and even give it a limit how many opcodes to trace. This is kind of a hassle because everything slows to a crawl the moment it is on.
2) Using new hidden/undocumented features (see recent 2.0-stable release) insert this special command in your code which will look like a NOP on a regular 65c02 or any other emulator, but will actually tell JACE to start trace, as well as other commands:
FC 65 00: Turn on trace
FC 65 01: Turn off trace
FC 50 xx: Print #xx to std out
FC 5B xx: Println #xx to std out
FC 5C xx: Print chr(xx) to std out

This is because FC looks like a NOP which also matches the decode pattern for an absolute address mode, taking two additional bytes (which are usually read but ignored by the real chip) So with that JACE can repurpose the NOP as an external command hook. :) There's also some hooks to get memory to dump all the softswitch states to STDOUT if anyone wants it for debugging purposes.

-B
Re: Jace updates [message #337839 is a reply to message #337816] Mon, 20 February 2017 13:05 Go to previous messageGo to next message
BLuRry is currently offline  BLuRry
Messages: 489
Registered: October 2012
Karma: 0
Senior Member
On Sunday, February 19, 2017 at 11:22:39 PM UTC-6, BLuRry wrote:
> On Tuesday, February 7, 2017 at 6:14:26 PM UTC-6, John Public wrote:
>> On Saturday, December 3, 2016 at 3:21:04 PM UTC-8, John Public wrote:
>>>> The latest 2.0-Stable build can be found here:
>>>> https://github.com/badvision/jace/releases
>>>
>>> I forgot how to write a 6502 trace to disk and can't seem to find it in the
>>> documentation. Thanks. :)
>>
>> So does anyone know what it is? I want to write a 6502 trace to my hard drive.
>
> Oh, stupid emulation author didn't follow his own post to see your question (SORRY) You have two options:
>
> 1) From the CPU config (ctrl+shift+C) you can enable trace to STD OUT and even give it a limit how many opcodes to trace. This is kind of a hassle because everything slows to a crawl the moment it is on.
> 2) Using new hidden/undocumented features (see recent 2.0-stable release) insert this special command in your code which will look like a NOP on a regular 65c02 or any other emulator, but will actually tell JACE to start trace, as well as other commands:
> FC 65 00: Turn on trace
> FC 65 01: Turn off trace
> FC 50 xx: Print #xx to std out
> FC 5B xx: Println #xx to std out
> FC 5C xx: Print chr(xx) to std out
>
> This is because FC looks like a NOP which also matches the decode pattern for an absolute address mode, taking two additional bytes (which are usually read but ignored by the real chip) So with that JACE can repurpose the NOP as an external command hook. :) There's also some hooks to get memory to dump all the softswitch states to STDOUT if anyone wants it for debugging purposes.
>
> -B

Here's an example using the NOP Special modes. The program itself is still quite broken but the output to STDOUT works. I'm still trying to get this mockingboard driver to work but at least now I can keep better tabs on what it's doing before going kaput!

https://gist.github.com/badvision/837c8e2449b449069c3b
Re: Jace updates [message #337848 is a reply to message #331477] Mon, 20 February 2017 17:01 Go to previous messageGo to next message
Anonymous
Karma:
Originally posted by: John Public

Blurry, I don't need stdout. it goes too fast for me to read anyway.
There was a way to write a 6502 trace to disk and I don't remember what it was.
It wrote something like this if I remember right
A X Y SP
00 FF 00 01FF 1800 A2 FF LDX #$FF

I don't remember and that's what's frustrating me right now.
I want to dump a trace file to disk as ddial is running.
Re: Jace updates [message #337853 is a reply to message #337848] Mon, 20 February 2017 18:18 Go to previous messageGo to next message
Steve Nickolas is currently offline  Steve Nickolas
Messages: 2036
Registered: October 2012
Karma: 0
Senior Member
On Mon, 20 Feb 2017, John Public wrote:

> Blurry, I don't need stdout. it goes too fast for me to read anyway.
> There was a way to write a 6502 trace to disk and I don't remember what it was.
> It wrote something like this if I remember right
> A X Y SP
> 00 FF 00 01FF 1800 A2 FF LDX #$FF
>
> I don't remember and that's what's frustrating me right now.
> I want to dump a trace file to disk as ddial is running.
>

Well, stdout can be redirected, that's what > is for (both on Windows and
*x).

-uso.
Re: Jace updates [message #351809 is a reply to message #337853] Sat, 02 September 2017 06:21 Go to previous messageGo to next message
Anonymous
Karma:
Originally posted by: John Public

On Monday, February 20, 2017 at 3:18:48 PM UTC-8, Steve Nickolas wrote:
> On Mon, 20 Feb 2017, John Public wrote:
>
>> Blurry, I don't need stdout. it goes too fast for me to read anyway.
>> There was a way to write a 6502 trace to disk and I don't remember what it was.
>> It wrote something like this if I remember right
>> A X Y SP
>> 00 FF 00 01FF 1800 A2 FF LDX #$FF
>>
>> I don't remember and that's what's frustrating me right now.
>> I want to dump a trace file to disk as ddial is running.
>>
>
> Well, stdout can be redirected, that's what > is for (both on Windows and
> *x).
>
> -uso.

I still can't remember the command to do it. I need to write a trace to disk steve, having it scroll by at warp 9 does nothing for me.
Re: Jace updates [message #351837 is a reply to message #351809] Sat, 02 September 2017 17:24 Go to previous messageGo to next message
Steve Nickolas is currently offline  Steve Nickolas
Messages: 2036
Registered: October 2012
Karma: 0
Senior Member
On Sat, 2 Sep 2017, John Public wrote:

> On Monday, February 20, 2017 at 3:18:48 PM UTC-8, Steve Nickolas wrote:
>> On Mon, 20 Feb 2017, John Public wrote:
>>
>>> Blurry, I don't need stdout. it goes too fast for me to read anyway.
>>> There was a way to write a 6502 trace to disk and I don't remember what it was.
>>> It wrote something like this if I remember right
>>> A X Y SP
>>> 00 FF 00 01FF 1800 A2 FF LDX #$FF
>>>
>>> I don't remember and that's what's frustrating me right now.
>>> I want to dump a trace file to disk as ddial is running.
>>>
>>
>> Well, stdout can be redirected, that's what > is for (both on Windows and
>> *x).
>>
>> -uso.
>
> I still can't remember the command to do it. I need to write a trace to disk steve, having it scroll by at warp 9 does nothing for me.
>

Add ">filename.ext" to the end of the command line?

-uso.
Re: Jace updates [message #351861 is a reply to message #351837] Sun, 03 September 2017 06:03 Go to previous messageGo to next message
Anonymous
Karma:
Originally posted by: John Public

On Saturday, September 2, 2017 at 2:24:51 PM UTC-7, Steve Nickolas wrote:
> On Sat, 2 Sep 2017, John Public wrote:
>
>> On Monday, February 20, 2017 at 3:18:48 PM UTC-8, Steve Nickolas wrote:
>>> On Mon, 20 Feb 2017, John Public wrote:
>>>
>>>> Blurry, I don't need stdout. it goes too fast for me to read anyway.
>>>> There was a way to write a 6502 trace to disk and I don't remember what it was.
>>>> It wrote something like this if I remember right
>>>> A X Y SP
>>>> 00 FF 00 01FF 1800 A2 FF LDX #$FF
>>>>
>>>> I don't remember and that's what's frustrating me right now.
>>>> I want to dump a trace file to disk as ddial is running.
>>>>
>>>
>>> Well, stdout can be redirected, that's what > is for (both on Windows and
>>> *x).
>>>
>>> -uso.
>>
>> I still can't remember the command to do it. I need to write a trace to disk steve, having it scroll by at warp 9 does nothing for me.
>>
>
> Add ">filename.ext" to the end of the command line?
>
> -uso.

Steve, if it were that simple, I wouldn't be on here asking.
Here is the output:

Maximum output lines: -1
Allocated output lines: 0
Getting source line from Primary Sound Driver, version Unknown Version: PCM_SIGNED 48000.0 Hz, 16 bit, stereo, 4 bytes/frame, big-endian
Set property Computer (Apple //e).card6 to disk
Set property Disk ][ Controller (slot 6).disk1 to c:\ddial\ddial.dsk
Re: Jace updates [message #351862 is a reply to message #351861] Sun, 03 September 2017 06:06 Go to previous messageGo to next message
Anonymous
Karma:
Originally posted by: John Public

On Sunday, September 3, 2017 at 3:03:56 AM UTC-7, John Public wrote:
> On Saturday, September 2, 2017 at 2:24:51 PM UTC-7, Steve Nickolas wrote:
>> On Sat, 2 Sep 2017, John Public wrote:
>>
>>> On Monday, February 20, 2017 at 3:18:48 PM UTC-8, Steve Nickolas wrote:
>>>> On Mon, 20 Feb 2017, John Public wrote:
>>>>
>>>> > Blurry, I don't need stdout. it goes too fast for me to read anyway.
>>>> > There was a way to write a 6502 trace to disk and I don't remember what it was.
>>>> > It wrote something like this if I remember right
>>>> > A X Y SP
>>>> > 00 FF 00 01FF 1800 A2 FF LDX #$FF
>>>> >
>>>> > I don't remember and that's what's frustrating me right now.
>>>> > I want to dump a trace file to disk as ddial is running.
>>>> >
>>>>
>>>> Well, stdout can be redirected, that's what > is for (both on Windows and
>>>> *x).
>>>>
>>>> -uso.
>>>
>>> I still can't remember the command to do it. I need to write a trace to disk steve, having it scroll by at warp 9 does nothing for me.
>>>
>>
>> Add ">filename.ext" to the end of the command line?
>>
>> -uso.
>
> Steve, if it were that simple, I wouldn't be on here asking.
> Here is the output:
>
> Maximum output lines: -1
> Allocated output lines: 0
> Getting source line from Primary Sound Driver, version Unknown Version: PCM_SIGNED 48000.0 Hz, 16 bit, stereo, 4 bytes/frame, big-endian
> Set property Computer (Apple //e).card6 to disk
> Set property Disk ][ Controller (slot 6).disk1 to c:\ddial\ddial.dsk

Oh, and Steve.....
This is from an earlier message.

BlUrRy,
For the life of me, I can't remember how to do it.
I haven't anything in the documentation either.
I tried this:

C:\Progra~1\Java\jre1.8.0_141\bin\java -jar jace.jar -cpu.trace -computer.debugrom -computer.s6card disk -s6.d1 C:\DDIAL\DDIAL.DSK

and I do see a trace running in the dos window. I've tried using
> ddial.txt to send the output to disk but it doesn't work.
Also, CTRL-SHIFT-D does nothing. Any advice?
Re: Jace updates [message #351880 is a reply to message #351862] Sun, 03 September 2017 16:28 Go to previous messageGo to next message
Steve Nickolas is currently offline  Steve Nickolas
Messages: 2036
Registered: October 2012
Karma: 0
Senior Member
On Sun, 3 Sep 2017, John Public wrote:

> On Sunday, September 3, 2017 at 3:03:56 AM UTC-7, John Public wrote:
>> On Saturday, September 2, 2017 at 2:24:51 PM UTC-7, Steve Nickolas wrote:
>>> On Sat, 2 Sep 2017, John Public wrote:
>>>
>>>> On Monday, February 20, 2017 at 3:18:48 PM UTC-8, Steve Nickolas wrote:
>>>> > On Mon, 20 Feb 2017, John Public wrote:
>>>> >
>>>> >> Blurry, I don't need stdout. it goes too fast for me to read anyway.
>>>> >> There was a way to write a 6502 trace to disk and I don't remember what it was.
>>>> >> It wrote something like this if I remember right
>>>> >> A X Y SP
>>>> >> 00 FF 00 01FF 1800 A2 FF LDX #$FF
>>>> >>
>>>> >> I don't remember and that's what's frustrating me right now.
>>>> >> I want to dump a trace file to disk as ddial is running.
>>>> >>
>>>> >
>>>> > Well, stdout can be redirected, that's what > is for (both on Windows and
>>>> > *x).
>>>> >
>>>> > -uso.
>>>>
>>>> I still can't remember the command to do it. I need to write a trace to disk steve, having it scroll by at warp 9 does nothing for me.
>>>>
>>>
>>> Add ">filename.ext" to the end of the command line?
>>>
>>> -uso.
>>
>> Steve, if it were that simple, I wouldn't be on here asking.
>> Here is the output:
>>
>> Maximum output lines: -1
>> Allocated output lines: 0
>> Getting source line from Primary Sound Driver, version Unknown Version: PCM_SIGNED 48000.0 Hz, 16 bit, stereo, 4 bytes/frame, big-endian
>> Set property Computer (Apple //e).card6 to disk
>> Set property Disk ][ Controller (slot 6).disk1 to c:\ddial\ddial.dsk
>
> Oh, and Steve.....
> This is from an earlier message.
>
> BlUrRy,
> For the life of me, I can't remember how to do it.
> I haven't anything in the documentation either.
> I tried this:
>
> C:\Progra~1\Java\jre1.8.0_141\bin\java -jar jace.jar -cpu.trace -computer.debugrom -computer.s6card disk -s6.d1 C:\DDIAL\DDIAL.DSK
>
> and I do see a trace running in the dos window. I've tried using
>> ddial.txt to send the output to disk but it doesn't work.
> Also, CTRL-SHIFT-D does nothing. Any advice?
>
>

Well, I guess if adding >ddial.txt on the command line doesn't work, maybe
2>ddial.txt will? Though that seems odd, why would it write the trace to
stderr instead of stdout?

-uso.
Re: Jace updates [message #351881 is a reply to message #351880] Sun, 03 September 2017 16:44 Go to previous messageGo to next message
Anonymous
Karma:
Originally posted by: John Public

On Sunday, September 3, 2017 at 1:28:57 PM UTC-7, Steve Nickolas wrote:
> On Sun, 3 Sep 2017, John Public wrote:
>
>> On Sunday, September 3, 2017 at 3:03:56 AM UTC-7, John Public wrote:
>>> On Saturday, September 2, 2017 at 2:24:51 PM UTC-7, Steve Nickolas wrote:
>>>> On Sat, 2 Sep 2017, John Public wrote:
>>>>
>>>> > On Monday, February 20, 2017 at 3:18:48 PM UTC-8, Steve Nickolas wrote:
>>>> >> On Mon, 20 Feb 2017, John Public wrote:
>>>> >>
>>>> >>> Blurry, I don't need stdout. it goes too fast for me to read anyway.
>>>> >>> There was a way to write a 6502 trace to disk and I don't remember what it was.
>>>> >>> It wrote something like this if I remember right
>>>> >>> A X Y SP
>>>> >>> 00 FF 00 01FF 1800 A2 FF LDX #$FF
>>>> >>>
>>>> >>> I don't remember and that's what's frustrating me right now.
>>>> >>> I want to dump a trace file to disk as ddial is running.
>>>> >>>
>>>> >>
>>>> >> Well, stdout can be redirected, that's what > is for (both on Windows and
>>>> >> *x).
>>>> >>
>>>> >> -uso.
>>>> >
>>>> > I still can't remember the command to do it. I need to write a trace to disk steve, having it scroll by at warp 9 does nothing for me.
>>>> >
>>>>
>>>> Add ">filename.ext" to the end of the command line?
>>>>
>>>> -uso.
>>>
>>> Steve, if it were that simple, I wouldn't be on here asking.
>>> Here is the output:
>>>
>>> Maximum output lines: -1
>>> Allocated output lines: 0
>>> Getting source line from Primary Sound Driver, version Unknown Version: PCM_SIGNED 48000.0 Hz, 16 bit, stereo, 4 bytes/frame, big-endian
>>> Set property Computer (Apple //e).card6 to disk
>>> Set property Disk ][ Controller (slot 6).disk1 to c:\ddial\ddial.dsk
>>
>> Oh, and Steve.....
>> This is from an earlier message.
>>
>> BlUrRy,
>> For the life of me, I can't remember how to do it.
>> I haven't anything in the documentation either.
>> I tried this:
>>
>> C:\Progra~1\Java\jre1.8.0_141\bin\java -jar jace.jar -cpu.trace -computer.debugrom -computer.s6card disk -s6.d1 C:\DDIAL\DDIAL.DSK
>>
>> and I do see a trace running in the dos window. I've tried using
>>> ddial.txt to send the output to disk but it doesn't work.
>> Also, CTRL-SHIFT-D does nothing. Any advice?
>>
>>
>
> Well, I guess if adding >ddial.txt on the command line doesn't work, maybe
> 2>ddial.txt will? Though that seems odd, why would it write the trace to
> stderr instead of stdout?
>
> -uso.

Not sure, all I know is, there was a way to do it. I don't know if it's because I have the latest Jace or not. Maybe it doesn't work anymore?
Re: Jace updates [message #351889 is a reply to message #331477] Sun, 03 September 2017 21:37 Go to previous messageGo to next message
Anonymous
Karma:
Originally posted by: James Davis

Don't know anything about this subject, but, at the risk of "sticking my foot in my mouth" again, and because not everyone always thinks of the obvious things, I'll put in my two cents, too.

After reading this thread up to this point, I wonder:

1) if you have tried using a fully qualified pathname; and

2) while analyzing the Old Monitor ROM, I came across this warning about the Old DOS--from What's Where in the Apple--but it might not be true for ProDOS:

(My "Apple II Equates" version)
STATUS EQU $48 ;[OM] USER P-REG (AKA: STATUS REGISTER): SAVED HERE
; ON BRK TO MONITOR & DURING TRACE & BY MONITOR
; SAVE ROUTINE; WARNING: INITIALIZE BEFORE MON-
; ITOR GOTO (G) FUNCTION TO AVOID DECIMAL MODE
; IF DOS HAS BEEN USED.

Hope this helps,

James Davis
Re: Jace updates [message #351890 is a reply to message #351889] Sun, 03 September 2017 21:40 Go to previous messageGo to next message
Anonymous
Karma:
Originally posted by: James Davis

On Sunday, September 3, 2017 at 6:37:56 PM UTC-7, James Davis wrote:
> Don't know anything about this subject, but, at the risk of "sticking my foot in my mouth" again, and because not everyone always thinks of the obvious things, I'll put in my two cents, too.
>
> After reading this thread up to this point, I wonder:
>
> 1) if you have tried using a fully qualified pathname; and
>
> 2) while analyzing the Old Monitor ROM, I came across this warning about the Old DOS--from What's Where in the Apple--but it might not be true for ProDOS:
>
> (My "Apple II Equates" version)
> STATUS EQU $48 ;[OM] USER P-REG (AKA: STATUS REGISTER): SAVED HERE
> ; ON BRK TO MONITOR & DURING TRACE & BY MONITOR
> ; SAVE ROUTINE; WARNING: INITIALIZE BEFORE MON-
> ; ITOR GOTO (G) FUNCTION TO AVOID DECIMAL MODE
> ; IF DOS HAS BEEN USED.
>
> Hope this helps,
>
> James Davis

OOPS, I may have put this in the wrong thread!
Re: Jace updates [message #353926 is a reply to message #331477] Fri, 06 October 2017 16:31 Go to previous messageGo to next message
Anonymous
Karma:
Originally posted by: John Public

On Saturday, November 5, 2016 at 9:04:24 AM UTC-7, BLuRry wrote:
> After switching back to Windows, I found that some things in Jace were not working as well as they had in other platforms. I have updated Jace with the following:
>
> - ACME assembly now works on Windows: NestedVM was internally not handling windows paths correctly so this was breaking the JUnit build tests on Windows as well as trying to assemble from the IDE (ctrl+shift+i to invoke)
>
> - Applesoft programs now run without crashing when editing from the IDE. I wasn't clearing the variable state correctly and that was causing variables to overwrite the program (whoops!) Thanks to all who reported it. It's fixed now. You can now use JACE to enter very, very long applesoft lines if you want but remember you still have a 256 token/character limit (I think...)
>
> On my surface book, I'm not getting sound so that will be the next thing to be fixed it would seem. :)
>
> The latest 2.0-Stable build can be found here:
> https://github.com/badvision/jace/releases

Quite odd, but the >2 did it. Not sure why though. I have to delete the date etc. from the trace but that's no biggie.
Re: Jace updates [message #421080 is a reply to message #331477] Sun, 26 November 2023 19:01 Go to previous messageGo to next message
Ivan X is currently offline  Ivan X
Messages: 147
Registered: April 2013
Karma: 0
Senior Member
On Saturday, November 5, 2016 at 9:04:24 AM UTC-7, BLuRry wrote:
> After switching back to Windows, I found that some things in Jace were not working as well as they had in other platforms. I have updated Jace with the following:
>
> - ACME assembly now works on Windows: NestedVM was internally not handling windows paths correctly so this was breaking the JUnit build tests on Windows as well as trying to assemble from the IDE (ctrl+shift+i to invoke)
>
> - Applesoft programs now run without crashing when editing from the IDE. I wasn't clearing the variable state correctly and that was causing variables to overwrite the program (whoops!) Thanks to all who reported it. It's fixed now. You can now use JACE to enter very, very long applesoft lines if you want but remember you still have a 256 token/character limit (I think....)
>
> On my surface book, I'm not getting sound so that will be the next thing to be fixed it would seem. :)
>
> The latest 2.0-Stable build can be found here:
> https://github.com/badvision/jace/releases

I just went looking around for this, but on the GitHub project page, there are no releases, only a couple of tags which contain source code only. Any chance of putting it back up, or has JACE 2.0 been retired except for those intrepid enough to build it?
Re: Jace updates [message #421186 is a reply to message #421080] Mon, 11 December 2023 12:53 Go to previous messageGo to next message
Anonymous
Karma:
Originally posted by: Bill Chatfield

On Sun, 26 Nov 2023 16:01:07 -0800 (PST)
Ivan Drucker <ivan@ivanx.com> wrote:

> I just went looking around for this, but on the GitHub project page,
> there are no releases, only a couple of tags which contain source
> code only. Any chance of putting it back up, or has JACE 2.0 been
> retired except for those intrepid enough to build it?

I have created a precompiled Jar file, for those users who are not Java
developers and don't want to figure out how to compile it. In general,
I don't understand what the point of source-only releases which just
force EVERY user to spend the time and frustration to figure out how to
compile it, when it can just be done once by the owner.

https://github.com/gungwald/jace/releases/tag/2023-12-11_12- 42

You need JavaFx 1.8 installed. There are problems with the UI. But,
there it is.
Re: Jace updates [message #421196 is a reply to message #331477] Wed, 13 December 2023 18:28 Go to previous message
Anonymous
Karma:
Originally posted by: John Public

Hi BluRrY,
It's me again,. ddial pain in the can. :)
I think I found a bug.
Here's the deal.
You add modems to ddial and the program runs as normal.
However if you assign say port 2301 to modem 1,
then assign 2302 to modem 2, the port changes for both modems.
So if you do it for all 7, the port will be the same for all.
Is this by design? D-DIal used a hunting feature offered by the phone
company. However for TCP/IP you'd need 7 individual ports.
Thanks again. :) Yer favorite ddial pain in the can. Merry Christmas.




On Saturday, November 5, 2016 at 9:04:24 AM UTC-7, BLuRry wrote:
> After switching back to Windows, I found that some things in Jace were not working as well as they had in other platforms. I have updated Jace with the following:
>
> - ACME assembly now works on Windows: NestedVM was internally not handling windows paths correctly so this was breaking the JUnit build tests on Windows as well as trying to assemble from the IDE (ctrl+shift+i to invoke)
>
> - Applesoft programs now run without crashing when editing from the IDE. I wasn't clearing the variable state correctly and that was causing variables to overwrite the program (whoops!) Thanks to all who reported it. It's fixed now. You can now use JACE to enter very, very long applesoft lines if you want but remember you still have a 256 token/character limit (I think....)
>
> On my surface book, I'm not getting sound so that will be the next thing to be fixed it would seem. :)
>
> The latest 2.0-Stable build can be found here:
> https://github.com/badvision/jace/releases
  Switch to threaded view of this topic Create a new topic Submit Reply
Previous Topic: KEGS 1.32 - More compatibility fixes
Next Topic: KEGS enhancements
Goto Forum:
  

-=] Back to Top [=-
[ Syndicate this forum (XML) ] [ RSS ] [ PDF ]

Current Time: Tue Mar 19 03:26:48 EDT 2024

Total time taken to generate the page: 0.22623 seconds