Search found 15 matches

by Rink
Tue Jul 26, 2016 2:14 pm
Forum: Japanese (Sharp, NEC, Casio, Epson..)
Topic: Sharp X1 Executables
Replies: 21
Views: 28219

I'm happy with any license to be honest. Just wanted to check what you were using, and I'll use the same. Thanks for all the info about appmake - that's really helpful. I mostly have a standalone command-line tool working now. Been fun - I rarely write for Linux, but have been using Cygwin for this ...
by Rink
Mon Jul 25, 2016 1:27 pm
Forum: Japanese (Sharp, NEC, Casio, Epson..)
Topic: Sharp X1 Executables
Replies: 21
Views: 28219

The good news is: I'm working on the command-line tool at last. :-)

What source license model are you using for Z88DK's build tools? I hate asking questions like this on a forum, but I'm not entirely sure where the source is for appmake etc.

Cheers.

R
by Rink
Wed Jul 13, 2016 9:59 am
Forum: Japanese (Sharp, NEC, Casio, Epson..)
Topic: Sharp X1 Executables
Replies: 21
Views: 28219

Will get on it this week mate. Won't (initially anyway) have all the same features as XBrowser88 but I can definitely get you something.

Also: if anyone does use XBrowser88 and finds bugs / has suggestions etc. then feel free to leave them here or drop me a message.
by Rink
Tue Jul 12, 2016 7:28 am
Forum: Japanese (Sharp, NEC, Casio, Epson..)
Topic: Sharp X1 Executables
Replies: 21
Views: 28219

Ack. Can't believe it's been so long since I found time to do any X1 stuff. Stefan has given me a kick up the arse - so we'll get XBrowser88 back online and, at some point, updated/debugged/improved. I wrote some code for tapes a while back - not entirely sure where it is - and it was never tested o...
by Rink
Wed Dec 11, 2013 1:15 pm
Forum: z88dk-developers
Topic: [z88dk-dev] Do not waste your time with z88dk ?
Replies: 9
Views: 8597

Strangely little interest seems to be shown for the cross-target portability, the packaging tools and the extra libraries (which in turn are mostly supporting many targets together), but I'm not sure of it. I guess people tend to stick to writing code for their favourite Z80 machine and maybe don't...
by Rink
Wed Nov 27, 2013 4:43 pm
Forum: CP/M, FLOS and OS related
Topic: S-OS (The Sentinel)
Replies: 2
Views: 5759

Cool. Will look forward to giving that a whirl. I'm not a massive a fan of S-OS but it does work surprisingly well once you get used to syntax.

If you have aNy good links to documentation, I'm sure people would appreciate it.
by Rink
Wed Nov 06, 2013 9:40 am
Forum: Other targets
Topic: Might do a new target (but got a problem)
Replies: 11
Views: 13462

Damn you. That keyboard reading is the one thing I managed to do successfully. ;)
by Rink
Wed Oct 23, 2013 1:12 pm
Forum: Other targets
Topic: Might do a new target (but got a problem)
Replies: 11
Views: 13462

Nevermind. Stefano solved this one on another forum. :)

This thread is turning into more of a blog.
by Rink
Wed Oct 23, 2013 12:04 pm
Forum: Other targets
Topic: Might do a new target (but got a problem)
Replies: 11
Views: 13462

I'm stuck again. :) In my crt0 file, I need to define some bytes aligned to the next available "page". E.g. at $0100, $0200, $0300 etc. If the current position is $0119 then the bytes need to be at $0200. I can't put in a pre-calculated value at design time because I won't know if the othe...
by Rink
Tue Oct 22, 2013 6:59 pm
Forum: Other targets
Topic: Might do a new target (but got a problem)
Replies: 11
Views: 13462

Ooooh. Forum is back up! :)

Well... While it was offline, I got printf and malloc fully working, so things are shaping up nicely now.
by Rink
Fri Oct 18, 2013 1:56 pm
Forum: Other targets
Topic: Might do a new target (but got a problem)
Replies: 11
Views: 13462

Edit: Deleted question. Trying to keep the thread relatively tidy. My bad - didn't realise I needed the -lmalloc switch. :rolleyes: Still need to work out what printf is doing. I haven't implemented file handling so I guess that's causing it a problem? I assumed that since file handling was consider...
by Rink
Fri Oct 18, 2013 11:21 am
Forum: Other targets
Topic: Might do a new target (but got a problem)
Replies: 11
Views: 13462

Ok. Well I have everything building, and I can write C programs which use outp() to show that something is happening. But I've run into another problem. In the x1_crt0 file, if I include the block IF !DEFINED_nostreams IF DEFINED_ANSIstdio LIB closeall call closeall ENDIF ENDIF Then the program comp...
by Rink
Fri Oct 18, 2013 7:51 am
Forum: Other targets
Topic: Might do a new target (but got a problem)
Replies: 11
Views: 13462

I've tried the GnuUtils package, but sh crashes on Windows 8. After a considerable amount of messing around, I do have z88dk building on a Linux virtual machine so I guess I'll stick with that for now. At least I can get on with building the X1 clib... and figuring out why printf doesn't print :D Ch...
by Rink
Thu Oct 17, 2013 12:00 am
Forum: Other targets
Topic: Might do a new target (but got a problem)
Replies: 11
Views: 13462

Just following on from my own question - I've tried building the lib (on Windows) using: make x1_clib.lib but it didn't work. So I tried re-making the trs80_clib.lib and that didn't work either: '' '--- Building TRS 80 Library ---' '' make gfxdeps make[1]: Entering directory `C:/Program Files (x86)/...
by Rink
Wed Oct 16, 2013 9:11 pm
Forum: Other targets
Topic: Might do a new target (but got a problem)
Replies: 11
Views: 13462

Might do a new target (but got a problem)

Hi guys, I was thinking of creating a new z88dk target for the Sharp X1 series. Just to investigate things, I've followed the basic steps: - created the startup code (crt0.asm, .opt, x1.cfg etc) - created a folder in z88dk/libsrc/stdio/ and put test functions in for getk.asm, fputc_cons.asm and fget...