Search found 62 matches

by WauloK
Wed Oct 23, 2019 8:51 pm
Forum: Other targets
Topic: Z88dk1.9 - 1 bit sound for other targets?
Replies: 16
Views: 13141

Thanks
by WauloK
Wed Oct 23, 2019 8:49 pm
Forum: Other targets
Topic: VZ200 target
Replies: 18
Views: 10509

Thanks guys
by WauloK
Wed Oct 23, 2019 5:43 am
Forum: Other targets
Topic: Z88dk1.9 - 1 bit sound for other targets?
Replies: 16
Views: 13141

Looks like no new library for vz yet?
zcc.exe +vz -pragma-redirect:scrbase=base_graphics -clib=new -o test.vz test
Cannot find definition for -clib=new
by WauloK
Wed Oct 23, 2019 3:48 am
Forum: Other targets
Topic: Z88dk1.9 - 1 bit sound for other targets?
Replies: 16
Views: 13141

Do you know if there was any progress on this or if there's any other info we can provide? :)
by WauloK
Wed Oct 23, 2019 2:31 am
Forum: Other targets
Topic: VZ200 target
Replies: 18
Views: 10509

I just tested some soundfx. Most seem to be really good except this doesn't work: #include <stdio.h> #include <games.h> #include <vz.h> int main(void) { bit_play("2A--A-B-CDEFGAB5C+"); sleep(2); } Error: Error at file 'crt0_fp/fa.asm' line 12: symbol 'init_floatpack' not defined Errors in ...
by WauloK
Wed Oct 23, 2019 2:13 am
Forum: Other targets
Topic: VZ200 target
Replies: 18
Views: 10509

By the way, does the fzx font library only work on Spectrum or can others use it? I can see it says everywhere it was 'primarly' created for Spectrum but no info on use other than that. I was also hoping someone had made a generic tilemap library for z88dk but it looks like I may have to write my own.
by WauloK
Fri Oct 11, 2019 2:03 am
Forum: Other targets
Topic: VZ200 target
Replies: 18
Views: 10509

Line #60:

Code: Select all

trigger_titlescreen();
by WauloK
Fri Oct 11, 2019 2:00 am
Forum: Other targets
Topic: VZ200 target
Replies: 18
Views: 10509

I'm trying another application Flappy Bird and get this error: sccz80:"main.c" L:60 Warning:Implicit definition of function 'trigger_titlescreen' it will return an int. Prototype it explicitly if this is not what you want. [-Wimplicit-function-definition] sccz80:"main.c" L:273 Er...
by WauloK
Fri Oct 11, 2019 1:10 am
Forum: Other targets
Topic: VZ200 target
Replies: 18
Views: 10509

Hi!

That seems to let me compile nicely. For some reason the code doesn't work as it did back then and crashes the emulator now after the titlescreen so something else going on, but at least I can compile now. Thanks!
by WauloK
Thu Oct 10, 2019 9:37 pm
Forum: Other targets
Topic: VZ200 target
Replies: 18
Views: 10509

Hmm maybe just had to add:
#include <conio.h>
by WauloK
Thu Oct 10, 2019 9:31 pm
Forum: Other targets
Topic: VZ200 target
Replies: 18
Views: 10509

Ah ok. A friend discovered we need to change the naming conventions to be the same as z88dk: 'plot' to 'vz_plot' 'setbase' to 'vz_setbase' 'line' to 'vz_line' 'poke' to 'bpoke' etc. The last error I have to work on is: Error at file 'vz/vz_shape.asm' line 41: symbol 'scrbase' not defined Errors in s...
by WauloK
Thu Oct 10, 2019 11:14 am
Forum: Other targets
Topic: VZ200 target
Replies: 18
Views: 10509

VZ200 target

Hi I'm trying to get zcc to compile with a 0crt.asm file Jeurgen Buchmueller wrote years ago (with a couple of function entries I wrote as well in it). The top of the file begins: ; Run time start off for Small C. .module _crt .globl main ; This will be at the start location in the final image .star...