Search found 23 matches

by bru65pag
Sun Aug 27, 2017 9:08 am
Forum: Development
Topic: Pasmo Issue
Replies: 3
Views: 2509

Re: Pasmo Issue

Hi Andy, thanks for the suggestion. I'm quite familiar with ZX-IDE already. On Linux, I wanted to use native Linux running tools instead of going through wine to use ZX-IDE. On the problem I submitted, I would be surprised if all Plasmo users were force to compute by hand the address where they want...
by bru65pag
Sat Aug 26, 2017 11:04 pm
Forum: Development
Topic: Pasmo Issue
Replies: 3
Views: 2509

Pasmo Issue

Good evening, I'm struggling with PASMO when it comes to writing a line of BASIC to call me assembly routine. All goes well if I know in advance the address where it will start: basic_0010: defb 0,10 ; 10 RAND VAL "USR 16514" defw basic_0020-basic_0010-4 defb _RAND,_VAL,_DQT,_USR,_1,_6,_5,_1,_4,_DQT...
by bru65pag
Tue May 30, 2017 1:29 pm
Forum: Emulators
Topic: ZX81 assembler development on Linux
Replies: 6
Views: 6096

Re: ZX81 assembler development on Linux

Thanks Adam. Yes, I thought about it and will pick this solution as a last resort. I like notepadqq for editing and ZEsarUX for emulating, so if I can manage to use PASMO properly, i'll stick to this solution. Of course, I could also use TASM, the assembler used by ZX-IDE, on linux. It might solve m...
by bru65pag
Tue May 30, 2017 11:33 am
Forum: WANTED
Topic: Looking for a 16K RAM extension for ZX81
Replies: 2
Views: 4029

Looking for a 16K RAM extension for ZX81

Good morning,

I'm willing to buy a 16K RAM extension for my ZX81. If any of you has one to sell, please contact me.

Best regards. Bruno.
by bru65pag
Tue May 30, 2017 10:36 am
Forum: Emulators
Topic: ZX81 assembler development on Linux
Replies: 6
Views: 6096

ZX81 assembler development on Linux

Good morning, I recently got rid of Windows on my home computer, and I am now happily running Ubuntu. I used to use ZX-IDE with EightyOne on Windows. I am now using Notepadqq (for editing), PASMO (for assembling) and ZEsarUX (for emulating) on Linux. Works well, even if I miss the integrated environ...
by bru65pag
Fri Nov 18, 2016 7:13 pm
Forum: Hardware
Topic: ZX81 monitor
Replies: 39
Views: 17985

Re: ZX81 monitor

Good evening everybody, Thanks for your answers. I'm not done yet ;-) My computer monitor has the following connectors: monitorConnections.jpg Nothing that you guys have mentioned (Beware, the yellow connection you see on the left is for audio). I'm not talking about a TV here, but a monitor. Is the...
by bru65pag
Thu Nov 17, 2016 11:03 pm
Forum: Hardware
Topic: ZX81 monitor
Replies: 39
Views: 17985

Re: ZX81 monitor

Hello PokeMon. The ZX8-CCB seems like what I need to connect a recently acquired ZX-81 to a recent computer monitor with VGA and HDMI interfaces. Reading your explanation on sellmyretro.com: "Video output could be provided outside the case by implementing a 3.5mm jack or similar". So, assuming I imp...
by bru65pag
Sun Jan 10, 2016 12:30 pm
Forum: Development
Topic: ZX-IDE Tutorial for programming assembler and ZX BASIC
Replies: 86
Views: 114743

Re: Edit and compile (assemble)

Good morning Pokemon, I'm using the ZX-IDE for editing my assembly files.This brings editing limitations compared to using an external editor like Notepad++, but the very purpose of an IDE is to be integrated right ;-) ? One question and one suggestion: 1/ Did you ever consider integrating an extern...
by bru65pag
Wed Jan 06, 2016 11:07 pm
Forum: Development
Topic: ZX-IDE Tutorial for programming assembler and ZX BASIC
Replies: 86
Views: 114743

Re: ZX-IDE Tutorial for programming assembler and ZX BASIC

Good evening Pokemon,
I confirm that the issue is fixed on my side, the generated p file has the correct BASIC lines :-)
Thanks a lot for your prompt reply.
Bruno.
by bru65pag
Mon Jan 04, 2016 1:20 pm
Forum: Development
Topic: ZX-IDE Tutorial for programming assembler and ZX BASIC
Replies: 86
Views: 114743

Re: ZX-IDE Tutorial for programming assembler and ZX BASIC

About my first point: I did further investigations. The easiest workaround is to add additional parenthesis:

Code: Select all

63 LET DI=1-(2 AND (L=20 OR INKEY$="M"))
becomes

Code: Select all

63 LET DI=1-((2) AND ((L=20) OR (INKEY$="M")))