Gameboy Development Forum

Discussion about software development for the old-school Gameboys, ranging from the "Gray brick" to Gameboy Color
(Launched in 2008)

You are not logged in.

Ads

#1 2017-05-21 09:59:13

npzman
Banned
From:
Registered: 2014-11-19
Posts: 197

ZGB: So I am stuck at the music chapter

Does anyone want to help me with this chapter on
https://github.com/zal0/ZGB#music any good resource I can find a music I can use for the ZGB tutorial ?
I need someone to help me on this.

Last edited by npzman (2017-05-23 05:48:08)


Twitter : @Sfeedman please follow
Join : sfeed.club my website please join

Offline

 

#2 2017-05-23 05:59:55

npzman
Banned
From:
Registered: 2014-11-19
Posts: 197

Re: ZGB: So I am stuck at the music chapter

Maybe I need to explain more so......

I just need someone to help find a music MOD I can use to put in
res/music which is in that format game.b3.mod. @DU0 was going to do help that. But I guess he got busy.

Or is it okay to skip to the sounds chapter then come back to the music chapter later ?
I am tempted to do that. Anyone who helps I will be thankful.

All the best

Last edited by npzman (2017-05-23 06:01:16)


Twitter : @Sfeedman please follow
Join : sfeed.club my website please join

Offline

 

#3 2017-05-23 06:56:00

Zalo
Member
From: Spain
Registered: 2016-07-26
Posts: 103
Website

Re: ZGB: So I am stuck at the music chapter

You can use any of the mods I used on my projects
Super Princess 2092 Exodus Music
Pretty Princess' Castle Escape Music

PS: you sent me 14 emails in the past 24 hours... please stop being so annoying (and no I am not unlocking any of my accounts, you have some serious issues my friend)

Offline

 

#4 2017-05-23 07:05:53

npzman
Banned
From:
Registered: 2014-11-19
Posts: 197

Re: ZGB: So I am stuck at the music chapter

Zalo wrote:

You can use any of the mods I used on my projects
Super Princess 2092 Exodus Music
Pretty Princess' Castle Escape Music

PS: you sent me 14 emails in the past 24 hours... please stop being so annoying (and no I am not unlocking any of my accounts, you have some serious issues my friend)

Smart idea thanks

You didn't mentioned the youtube comment (Which I now deleted)

Last edited by npzman (2017-05-23 07:07:41)


Twitter : @Sfeedman please follow
Join : sfeed.club my website please join

Offline

 

#5 2017-05-23 10:05:52

npzman
Banned
From:
Registered: 2014-11-19
Posts: 197

Re: ZGB: So I am stuck at the music chapter

Great news is that I have finished the Music and sounds chapter phew. So I just need help with the debug. I don't know why the debug compiler shows a blank screen after I run build_Debug.bat

https://s25.postimg.org/fjoonyej3/debug.jpg

However if I run build.bat for release it builds and runs properly like it normally should.

https://s25.postimg.org/dli0pym1b/release.jpg

Note: The ZGB version I used is the 1st release on github and does not have any updated versions. The same goes for the ZGB Template.

Last edited by npzman (2017-05-23 10:10:16)


Twitter : @Sfeedman please follow
Join : sfeed.club my website please join

Offline

 

#6 2017-05-24 04:50:39

npzman
Banned
From:
Registered: 2014-11-19
Posts: 197

Re: ZGB: So I am stuck at the music chapter

So when I compile the Debug rom and still it's blank. How could I fix that ?

After that I am done and passed the whole tutorial. I would be so happy

Last edited by npzman (2017-05-24 08:23:57)


Twitter : @Sfeedman please follow
Join : sfeed.club my website please join

Offline

 

#7 2017-05-26 02:37:24

Zalo
Member
From: Spain
Registered: 2016-07-26
Posts: 103
Website

Re: ZGB: So I am stuck at the music chapter

Can you try doing clean, and then build_Debug.bat?

Offline

 

#8 2017-05-26 03:33:14

npzman
Banned
From:
Registered: 2014-11-19
Posts: 197

Re: ZGB: So I am stuck at the music chapter

Yes I have still not working

Can I send you the code via email ? please


Twitter : @Sfeedman please follow
Join : sfeed.club my website please join

Offline

 

#9 2017-05-26 08:03:13

Zalo
Member
From: Spain
Registered: 2016-07-26
Posts: 103
Website

Re: ZGB: So I am stuck at the music chapter

Send it to me and I'll take a look

Offline

 

#10 2017-05-27 08:16:05

npzman
Banned
From:
Registered: 2014-11-19
Posts: 197

Re: ZGB: So I am stuck at the music chapter

I did

did you put my email on spam ?


Twitter : @Sfeedman please follow
Join : sfeed.club my website please join

Offline

 

#11 2017-05-31 08:46:58

Zalo
Member
From: Spain
Registered: 2016-07-26
Posts: 103
Website

Re: ZGB: So I am stuck at the music chapter

I should, but no, I didnt'

Offline

 

#12 2017-05-31 09:01:00

Zalo
Member
From: Spain
Registered: 2016-07-26
Posts: 103
Website

Re: ZGB: So I am stuck at the music chapter

Ok, so I took a look at your project and got this compiler error:

Code:

compiling ZGBMain.c
Linking
?ASlink-Warning-Undefined Global _InitSprites referenced by module lcc51120

so I searched in your code the fucntion InitSprites which doesn't exist. You should change this

Code:

void InitStates() {
    INIT_STATE(STATE_GAME);
    INIT_SPRITE(SPRITE_PLAYER, player, 3, FRAME_16x16, 3);
    INIT_SPRITE(SPRITE_ENEMY,  enemy,  3, FRAME_16x16, 1);
}

into this

Code:

void InitStates() {
    INIT_STATE(STATE_GAME);
    INIT_SPRITE(SPRITE_PLAYER, player, 3, FRAME_16x16, 3);
}

void InitSprites() {
    INIT_SPRITE(SPRITE_ENEMY,  enemy,  3, FRAME_16x16, 1);
}

Offline

 

#13 2017-06-01 19:53:24

npzman
Banned
From:
Registered: 2014-11-19
Posts: 197

Re: ZGB: So I am stuck at the music chapter

Thank for the help I still getting errors for debug. Yes I also did hit clean.bat. Please thanks for the help. Release is fine smile

Code:

C:\Users\owner\Desktop\ZGB-template>C:\gbdk\bin\make-3.81-bin\bin\make -C C:\gbdk\ZGB\common\src BUILD_TYPE=Debug
make: Entering directory `C:/gbdk/ZGB/common/src'
make: Nothing to be done for `all'.
make: Leaving directory `C:/gbdk/ZGB/common/src'

C:\Users\owner\Desktop\ZGB-template>cd src

C:\Users\owner\Desktop\ZGB-template\src>C:\gbdk\bin\make-3.81-bin\bin\make run BUILD_TYPE=Debug
Linking
WARNING: possibly wrote twice at addr 42ce (20->21)
WARNING: possibly wrote twice at addr 42cf (41->A0)
WARNING: possibly wrote twice at addr 42d0 (79->C0)
WARNING: possibly wrote twice at addr 42d1 (EA->36)
WARNING: possibly wrote twice at addr 42d2 (FA->02)
WARNING: possibly wrote twice at addr 42d3 (C0->21)
WARNING: possibly wrote twice at addr 42d4 (78->A1)
WARNING: possibly wrote twice at addr 42d5 (EA->C0)
WARNING: possibly wrote twice at addr 42d6 (FB->36)
WARNING: possibly wrote twice at addr 42d7 (C0->02)
WARNING: possibly wrote twice at addr 42d8 (1A->21)
WARNING: possibly wrote twice at addr 42d9 (13->A5)
WARNING: possibly wrote twice at addr 42da (CB->C0)
WARNING: possibly wrote twice at addr 42db (7F->36)
WARNING: possibly wrote twice at addr 42dc (20->02)
WARNING: possibly wrote twice at addr 42dd (14->11)
WARNING: possibly wrote twice at addr 42de (47->A6)
WARNING: possibly wrote twice at addr 42df (E6->C0)
WARNING: possibly wrote twice at addr 42e0 (30->3E)
WARNING: possibly wrote twice at addr 42e1 (CB->01)
WARNING: possibly wrote twice at addr 42e2 (27->12)
WARNING: possibly wrote twice at addr 42e3 (CB->11)
WARNING: possibly wrote twice at addr 42e4 (27->A7)
WARNING: possibly wrote twice at addr 42e5 (EA->C0)
WARNING: possibly wrote twice at addr 42e6 (F5->3E)
WARNING: possibly wrote twice at addr 42e7 (C0->00)
WARNING: possibly wrote twice at addr 42e8 (78->12)
WARNING: possibly wrote twice at addr 42e9 (E6->21)
WARNING: possibly wrote twice at addr 42ea (0F->A8)
WARNING: possibly wrote twice at addr 42eb (CB->C0)
WARNING: possibly wrote twice at addr 42ec (37->36)
WARNING: possibly wrote twice at addr 42ed (EA->00)
WARNING: possibly wrote twice at addr 42ee (F1->21)
WARNING: possibly wrote twice at addr 42ef (C0->C8)
WARNING: possibly wrote twice at addr 42f0 (18->C0)
WARNING: possibly wrote twice at addr 42f1 (10->36)
WARNING: possibly wrote twice at addr 42f2 (47->02)
WARNING: possibly wrote twice at addr 42f3 (E6->11)
WARNING: possibly wrote twice at addr 42f4 (30->C9)
WARNING: possibly wrote twice at addr 42f5 (CB->C0)
WARNING: possibly wrote twice at addr 42f6 (27->3E)
WARNING: possibly wrote twice at addr 42f7 (CB->00)
WARNING: possibly wrote twice at addr 42f8 (27->12)
WARNING: possibly wrote twice at addr 4387 (09->C9)
WARNING: possibly wrote twice at addr 42f9 (21->EA)
WARNING: possibly wrote twice at addr 42fa (14->F5)
WARNING: possibly wrote twice at addr 42fb (C1->C0)
WARNING: possibly wrote twice at addr 42fc (36->78)
WARNING: possibly wrote twice at addr 42fd (00->E6)
WARNING: possibly wrote twice at addr 42fe (21->0F)
WARNING: possibly wrote twice at addr 42ff (15->CD)
WARNING: possibly wrote twice at addr 4300 (C1->80)
WARNING: possibly wrote twice at addr 4301 (36->43)
WARNING: possibly wrote twice at addr 4302 (00->FA)
WARNING: possibly wrote twice at addr 4303 (21->F5)
WARNING: possibly wrote twice at addr 4304 (18->C0)
WARNING: possibly wrote twice at addr 4305 (C1->EA)
WARNING: possibly wrote twice at addr 4306 (36->16)
WARNING: possibly wrote twice at addr 4308 (21->FA)
WARNING: possibly wrote twice at addr 4309 (19->F1)
WARNING: possibly wrote twice at addr 430a (C1->C0)
WARNING: possibly wrote twice at addr 430b (36->EA)
WARNING: possibly wrote twice at addr 430c (00->17)
WARNING: possibly wrote twice at addr 430e (1A->FA)
WARNING: possibly wrote twice at addr 430f (C1->FA)
WARNING: possibly wrote twice at addr 4310 (36->C0)
WARNING: possibly wrote twice at addr 4311 (00->EA)
WARNING: possibly wrote twice at addr 4312 (21->18)
WARNING: possibly wrote twice at addr 4314 (C1->FA)
WARNING: possibly wrote twice at addr 4315 (36->FB)
WARNING: possibly wrote twice at addr 4316 (00->C0)
WARNING: possibly wrote twice at addr 4317 (21->F6)
WARNING: possibly wrote twice at addr 4318 (21->80)
WARNING: possibly wrote twice at addr 4319 (C1->EA)
WARNING: possibly wrote twice at addr 431a (36->19)
WARNING: possibly wrote twice at addr 431c (21->C9)
WARNING: possibly wrote twice at addr 431d (22->FA)
WARNING: possibly wrote twice at addr 431e (C1->0F)
WARNING: possibly wrote twice at addr 431f (36->C1)
WARNING: possibly wrote twice at addr 4320 (00->21)
WARNING: possibly wrote twice at addr 4321 (21->E6)
WARNING: possibly wrote twice at addr 4322 (23->C0)
WARNING: possibly wrote twice at addr 4323 (C1->BE)
WARNING: possibly wrote twice at addr 4324 (36->C2)
WARNING: possibly wrote twice at addr 4325 (00->34)
WARNING: possibly wrote twice at addr 4326 (21->43)
WARNING: possibly wrote twice at addr 4327 (24->3D)
WARNING: possibly wrote twice at addr 4328 (C1->EA)
WARNING: possibly wrote twice at addr 4329 (36->0F)
WARNING: possibly wrote twice at addr 432a (80->C1)
WARNING: possibly wrote twice at addr 432b (21->AF)
WARNING: possibly wrote twice at addr 432c (25->EA)
WARNING: possibly wrote twice at addr 432d (C1->17)
WARNING: possibly wrote twice at addr 432f (00->3E)
WARNING: possibly wrote twice at addr 4330 (21->80)
WARNING: possibly wrote twice at addr 4331 (26->EA)
WARNING: possibly wrote twice at addr 4332 (C1->19)
WARNING: possibly wrote twice at addr 4334 (00->FA)
WARNING: possibly wrote twice at addr 4335 (21->09)
WARNING: possibly wrote twice at addr 4336 (27->C1)
WARNING: possibly wrote twice at addr 4337 (C1->A7)
WARNING: possibly wrote twice at addr 4338 (36->C8)
WARNING: possibly wrote twice at addr 4339 (00->FA)
WARNING: possibly wrote twice at addr 433a (21->0C)
WARNING: possibly wrote twice at addr 433b (34->C1)
WARNING: possibly wrote twice at addr 433c (C1->A7)
WARNING: possibly wrote twice at addr 433d (36->20)
WARNING: possibly wrote twice at addr 433e (00->14)
WARNING: possibly wrote twice at addr 433f (21->FA)
WARNING: possibly wrote twice at addr 4340 (35->02)
WARNING: possibly wrote twice at addr 4341 (C1->C1)
WARNING: possibly wrote twice at addr 4342 (36->CD)
WARNING: possibly wrote twice at addr 4343 (00->20)
WARNING: possibly wrote twice at addr 4344 (21->41)
WARNING: possibly wrote twice at addr 4345 (36->79)
WARNING: possibly wrote twice at addr 4346 (C1->EA)
WARNING: possibly wrote twice at addr 4347 (36->FA)
WARNING: possibly wrote twice at addr 4348 (00->C0)
WARNING: possibly wrote twice at addr 4349 (21->78)
WARNING: possibly wrote twice at addr 434a (37->EA)
WARNING: possibly wrote twice at addr 434b (C1->FB)
WARNING: possibly wrote twice at addr 434c (36->C0)
WARNING: possibly wrote twice at addr 434d (00->3E)
WARNING: possibly wrote twice at addr 434e (21->01)
WARNING: possibly wrote twice at addr 434f (38->EA)
WARNING: possibly wrote twice at addr 4350 (C1->0C)
WARNING: possibly wrote twice at addr 4351 (36->C1)
WARNING: possibly wrote twice at addr 4352 (00->C9)
WARNING: possibly wrote twice at addr 4353 (21->FE)
WARNING: possibly wrote twice at addr 4354 (39->01)
WARNING: possibly wrote twice at addr 4355 (C1->20)
WARNING: possibly wrote twice at addr 4356 (36->15)
WARNING: possibly wrote twice at addr 4357 (00->FA)
WARNING: possibly wrote twice at addr 4358 (21->03)
WARNING: possibly wrote twice at addr 4359 (3B->C1)
WARNING: possibly wrote twice at addr 435a (C2->CD)
WARNING: possibly wrote twice at addr 435b (36->20)
WARNING: possibly wrote twice at addr 435c (00->41)
WARNING: possibly wrote twice at addr 435d (21->79)
WARNING: possibly wrote twice at addr 435e (3C->EA)
WARNING: possibly wrote twice at addr 435f (C2->FA)
WARNING: possibly wrote twice at addr 4360 (36->C0)
WARNING: possibly wrote twice at addr 4361 (00->78)
WARNING: possibly wrote twice at addr 4362 (21->EA)
WARNING: possibly wrote twice at addr 4363 (42->FB)
WARNING: possibly wrote twice at addr 4364 (C2->C0)
WARNING: possibly wrote twice at addr 4365 (36->3E)
WARNING: possibly wrote twice at addr 4366 (00->02)
WARNING: possibly wrote twice at addr 4367 (21->EA)
WARNING: possibly wrote twice at addr 4368 (43->0C)
WARNING: possibly wrote twice at addr 4369 (C2->C1)
WARNING: possibly wrote twice at addr 436a (36->3D)
WARNING: possibly wrote twice at addr 436b (00->C9)
WARNING: possibly wrote twice at addr 436c (21->FA)
WARNING: possibly wrote twice at addr 436d (49->04)
WARNING: possibly wrote twice at addr 436e (C2->C1)
WARNING: possibly wrote twice at addr 436f (36->CD)
WARNING: possibly wrote twice at addr 4370 (00->20)
WARNING: possibly wrote twice at addr 4371 (21->41)
WARNING: possibly wrote twice at addr 4372 (4A->79)
WARNING: possibly wrote twice at addr 4373 (C2->EA)
WARNING: possibly wrote twice at addr 4374 (36->FA)
WARNING: possibly wrote twice at addr 4375 (00->C0)
WARNING: possibly wrote twice at addr 4376 (21->78)
WARNING: possibly wrote twice at addr 4377 (4B->EA)
WARNING: possibly wrote twice at addr 4378 (C2->FB)
WARNING: possibly wrote twice at addr 4379 (36->C0)
WARNING: possibly wrote twice at addr 437a (01->AF)
WARNING: possibly wrote twice at addr 437b (11->EA)
WARNING: possibly wrote twice at addr 437c (0A->0C)
WARNING: possibly wrote twice at addr 437d (C5->C1)
WARNING: possibly wrote twice at addr 437e (3E->3C)
WARNING: possibly wrote twice at addr 437f (00->C9)
WARNING: possibly wrote twice at addr 4380 (12->21)
WARNING: possibly wrote twice at addr 4381 (11->8E)
WARNING: possibly wrote twice at addr 4382 (1F->43)
WARNING: possibly wrote twice at addr 4383 (C5->4F)
WARNING: possibly wrote twice at addr 4384 (3E->06)
WARNING: possibly wrote twice at addr 4385 (00->00)
WARNING: possibly wrote twice at addr 4386 (12->09)
WARNING: possibly wrote twice at addr 4000 (28->A5)
WARNING: possibly wrote twice at addr 4001 (02->D7)
WARNING: possibly wrote twice at addr 4002 (CB->C9)
WARNING: possibly wrote twice at addr 4003 (A4->E1)
WARNING: possibly wrote twice at addr 4004 (F0->BC)
WARNING: possibly wrote twice at addr 4005 (41->9A)
WARNING: possibly wrote twice at addr 4006 (E6->76)
WARNING: possibly wrote twice at addr 4007 (02->31)
WARNING: possibly wrote twice at addr 4008 (20->0C)
WARNING: possibly wrote twice at addr 4009 (FA->BA)
WARNING: possibly wrote twice at addr 400a (2A->DE)
WARNING: possibly wrote twice at addr 400b (02->60)
WARNING: possibly wrote twice at addr 400c (03->1B)
WARNING: possibly wrote twice at addr 400d (1B->CA)
WARNING: possibly wrote twice at addr 400e (7A->03)
WARNING: possibly wrote twice at addr 400f (B3->93)
WARNING: possibly wrote twice at addr 4010 (20->F0)
WARNING: possibly wrote twice at addr 4011 (E8->E1)
WARNING: possibly wrote twice at addr 4012 (C1->D2)
WARNING: possibly wrote twice at addr 4013 (C9->C3)
WARNING: possibly wrote twice at addr 4014 (C5->B4)
WARNING: possibly wrote twice at addr 4015 (F8->A5)
WARNING: possibly wrote twice at addr 4016 (07->96)
WARNING: possibly wrote twice at addr 4017 (46->87)
WARNING: possibly wrote twice at addr 4018 (2B->78)
WARNING: possibly wrote twice at addr 4019 (4E->69)
WARNING: possibly wrote twice at addr 401a (2B->5A)
WARNING: possibly wrote twice at addr 401b (5E->4B)
WARNING: possibly wrote twice at addr 401c (2B->3C)
WARNING: possibly wrote twice at addr 401d (6E->2D)
WARNING: possibly wrote twice at addr 401e (E5->1E)
WARNING: possibly wrote twice at addr 401f (AF->0F)
WARNING: possibly wrote twice at addr 4020 (B3->FD)
WARNING: possibly wrote twice at addr 4021 (20->EC)
WARNING: possibly wrote twice at addr 4022 (05->DB)
WARNING: possibly wrote twice at addr 4023 (11->CA)
WARNING: possibly wrote twice at addr 4024 (00->B9)
WARNING: possibly wrote twice at addr 4025 (10->A8)
WARNING: possibly wrote twice at addr 4026 (18->97)
WARNING: possibly wrote twice at addr 4027 (09->86)
WARNING: possibly wrote twice at addr 4028 (26->79)
WARNING: possibly wrote twice at addr 4029 (00->68)
WARNING: possibly wrote twice at addr 402a (6B->57)
WARNING: possibly wrote twice at addr 402b (29->46)
WARNING: possibly wrote twice at addr 402c (29->35)
WARNING: possibly wrote twice at addr 402d (29->24)
WARNING: possibly wrote twice at addr 402e (29->13)
WARNING: possibly wrote twice at addr 402f (54->02)
WARNING: possibly wrote twice at addr 4030 (5D->DE)
WARNING: possibly wrote twice at addr 4031 (E1->FE)
WARNING: possibly wrote twice at addr 4032 (6F->DC)
WARNING: possibly wrote twice at addr 4033 (29->BA)
WARNING: possibly wrote twice at addr 4034 (29->9A)
WARNING: possibly wrote twice at addr 4035 (29->A9)
WARNING: possibly wrote twice at addr 4036 (29->87)
WARNING: possibly wrote twice at addr 4037 (C5->77)
WARNING: possibly wrote twice at addr 4038 (01->88)
WARNING: possibly wrote twice at addr 4039 (00->87)
WARNING: possibly wrote twice at addr 403a (80->65)
WARNING: possibly wrote twice at addr 403b (09->56)
WARNING: possibly wrote twice at addr 403c (44->54)
WARNING: possibly wrote twice at addr 403d (4D->32)
WARNING: possibly wrote twice at addr 403e (E1->10)
WARNING: possibly wrote twice at addr 403f (CD->12)
WARNING: possibly wrote twice at addr 4040 (C0->AB)
WARNING: possibly wrote twice at addr 4041 (40->CD)
WARNING: possibly wrote twice at addr 4042 (C1->EF)
WARNING: possibly wrote twice at addr 4043 (C9->ED)
WARNING: possibly wrote twice at addr 4044 (F0->CB)
WARNING: possibly wrote twice at addr 4045 (40->A0)
WARNING: possibly wrote twice at addr 4046 (CB->12)
WARNING: possibly wrote twice at addr 4047 (67->3E)
WARNING: possibly wrote twice at addr 4048 (C2->DC)
WARNING: possibly wrote twice at addr 4049 (91->BA)
WARNING: possibly wrote twice at addr 404a (40->BC)
WARNING: possibly wrote twice at addr 404b (C5->DE)
WARNING: possibly wrote twice at addr 404c (F8->FE)
WARNING: possibly wrote twice at addr 404d (07->DC)
WARNING: possibly wrote twice at addr 404e (46->32)
WARNING: possibly wrote twice at addr 404f (2B->10)
WARNING: possibly wrote twice at addr 4051 (2B->EE)
WARNING: possibly wrote twice at addr 4052 (5E->DD)
WARNING: possibly wrote twice at addr 4053 (2B->CC)
WARNING: possibly wrote twice at addr 4054 (6E->BB)
WARNING: possibly wrote twice at addr 4055 (E5->AA)
WARNING: possibly wrote twice at addr 4056 (AF->99)
WARNING: possibly wrote twice at addr 4057 (B3->88)
WARNING: possibly wrote twice at addr 4058 (20->77)
WARNING: possibly wrote twice at addr 4059 (05->66)
WARNING: possibly wrote twice at addr 405a (11->55)
WARNING: possibly wrote twice at addr 405b (00->44)
WARNING: possibly wrote twice at addr 405c (10->33)
WARNING: possibly wrote twice at addr 405d (18->22)
WARNING: possibly wrote twice at addr 405e (09->11)
WARNING: possibly wrote twice at addr 405f (26->00)
WARNING: possibly wrote twice at addr 4068 (E1->00)
WARNING: possibly wrote twice at addr 4069 (7D->00)
WARNING: possibly wrote twice at addr 406a (07->00)
WARNING: possibly wrote twice at addr 406b (9F->00)
WARNING: possibly wrote twice at addr 406c (67->00)
WARNING: possibly wrote twice at addr 406d (29->00)
WARNING: possibly wrote twice at addr 406e (29->00)
WARNING: possibly wrote twice at addr 406f (29->00)
WARNING: possibly wrote twice at addr 4070 (29->79)
WARNING: possibly wrote twice at addr 4071 (C5->BC)
WARNING: possibly wrote twice at addr 4072 (01->DE)
WARNING: possibly wrote twice at addr 4073 (00->EF)
WARNING: possibly wrote twice at addr 4075 (09->EE)
WARNING: possibly wrote twice at addr 4076 (C1->DC)
WARNING: possibly wrote twice at addr 4077 (CB->B9)
WARNING: possibly wrote twice at addr 4078 (5C->75)
WARNING: possibly wrote twice at addr 4079 (28->43)
WARNING: possibly wrote twice at addr 407a (06->21)
WARNING: possibly wrote twice at addr 407b (CB->10)
WARNING: possibly wrote twice at addr 407c (64->00)
WARNING: possibly wrote twice at addr 407d (28->11)
WARNING: possibly wrote twice at addr 407e (02->23)
WARNING: possibly wrote twice at addr 407f (CB->45)
WARNING: possibly wrote twice at addr 4080 (A4->5F)
WARNING: possibly wrote twice at addr 4081 (F0->5B)
WARNING: possibly wrote twice at addr 4082 (41->4B)
WARNING: possibly wrote twice at addr 4083 (E6->2F)
WARNING: possibly wrote twice at addr 4084 (02->3B)
WARNING: possibly wrote twice at addr 4085 (20->58)
WARNING: possibly wrote twice at addr 4086 (FA->1F)
WARNING: possibly wrote twice at addr 4087 (0A->0F)
WARNING: possibly wrote twice at addr 4088 (22->90)
WARNING: possibly wrote twice at addr 4089 (03->80)
WARNING: possibly wrote twice at addr 408a (1B->70)
WARNING: possibly wrote twice at addr 408b (7A->50)
WARNING: possibly wrote twice at addr 408c (B3->00)
WARNING: possibly wrote twice at addr 408d (20->67)
WARNING: possibly wrote twice at addr 408e (E8->63)
WARNING: possibly wrote twice at addr 408f (C1->53)
WARNING: possibly wrote twice at addr 4090 (C9->2C)
WARNING: possibly wrote twice at addr 4091 (C5->00)
WARNING: possibly wrote twice at addr 4092 (F8->9C)
WARNING: possibly wrote twice at addr 4093 (07->00)
WARNING: possibly wrote twice at addr 4094 (46->06)
WARNING: possibly wrote twice at addr 4095 (2B->01)
WARNING: possibly wrote twice at addr 4096 (4E->6B)
WARNING: possibly wrote twice at addr 4097 (2B->01)
WARNING: possibly wrote twice at addr 4098 (5E->C9)
WARNING: possibly wrote twice at addr 4099 (2B->01)
WARNING: possibly wrote twice at addr 409a (6E->23)
WARNING: possibly wrote twice at addr 409b (E5->02)
WARNING: possibly wrote twice at addr 409c (AF->77)
WARNING: possibly wrote twice at addr 409d (B3->02)
WARNING: possibly wrote twice at addr 409e (20->C6)
WARNING: possibly wrote twice at addr 409f (05->02)
WARNING: possibly wrote twice at addr 40a0 (11->12)
WARNING: possibly wrote twice at addr 40a1 (00->03)
WARNING: possibly wrote twice at addr 40a2 (10->56)
WARNING: possibly wrote twice at addr 40a3 (18->03)
WARNING: possibly wrote twice at addr 40a4 (09->9B)
WARNING: possibly wrote twice at addr 40a5 (26->03)
WARNING: possibly wrote twice at addr 40a6 (00->DA)
WARNING: possibly wrote twice at addr 40a7 (6B->03)
WARNING: possibly wrote twice at addr 40a8 (29->16)
WARNING: possibly wrote twice at addr 40a9 (29->04)
WARNING: possibly wrote twice at addr 40aa (29->4E)
WARNING: possibly wrote twice at addr 40ab (29->04)
WARNING: possibly wrote twice at addr 40ac (54->83)
WARNING: possibly wrote twice at addr 40ad (5D->04)
WARNING: possibly wrote twice at addr 40ae (E1->B5)
WARNING: possibly wrote twice at addr 40af (26->04)
WARNING: possibly wrote twice at addr 40b0 (00->E5)
WARNING: possibly wrote twice at addr 40b1 (29->04)
WARNING: possibly wrote twice at addr 40b2 (29->11)
WARNING: possibly wrote twice at addr 40b3 (29->05)
WARNING: possibly wrote twice at addr 40b4 (29->3B)
WARNING: possibly wrote twice at addr 40b5 (C5->05)
WARNING: possibly wrote twice at addr 40b6 (01->63)
WARNING: possibly wrote twice at addr 40b7 (00->05)
WARNING: possibly wrote twice at addr 40b8 (80->89)
WARNING: possibly wrote twice at addr 40b9 (09->05)
WARNING: possibly wrote twice at addr 40ba (C1->AC)
WARNING: possibly wrote twice at addr 40bb (CD->05)
WARNING: possibly wrote twice at addr 40bc (C0->CE)
WARNING: possibly wrote twice at addr 40bd (40->05)
WARNING: possibly wrote twice at addr 40be (C1->ED)
WARNING: possibly wrote twice at addr 40bf (C9->05)
WARNING: possibly wrote twice at addr 40c0 (F0->0A)
WARNING: possibly wrote twice at addr 40c1 (41->06)
WARNING: possibly wrote twice at addr 40c2 (E6->27)
WARNING: possibly wrote twice at addr 40c3 (02->06)
WARNING: possibly wrote twice at addr 40c4 (20->42)
WARNING: possibly wrote twice at addr 40c5 (FA->06)
WARNING: possibly wrote twice at addr 40c6 (0A->5B)
WARNING: possibly wrote twice at addr 40c7 (22->06)
WARNING: possibly wrote twice at addr 40c8 (03->72)
WARNING: possibly wrote twice at addr 40c9 (1B->06)
WARNING: possibly wrote twice at addr 40ca (7A->89)
WARNING: possibly wrote twice at addr 40cb (B3->06)
WARNING: possibly wrote twice at addr 40cc (20->9E)
WARNING: possibly wrote twice at addr 40cd (F2->06)
WARNING: possibly wrote twice at addr 40ce (C9->B2)
WARNING: possibly wrote twice at addr 40cf (C5->06)
WARNING: possibly wrote twice at addr 40d0 (F8->C4)
WARNING: possibly wrote twice at addr 40d1 (09->06)
WARNING: possibly wrote twice at addr 40d2 (56->D6)
WARNING: possibly wrote twice at addr 40d3 (2B->06)
WARNING: possibly wrote twice at addr 40d4 (5E->E7)
WARNING: possibly wrote twice at addr 40d5 (2B->06)
WARNING: possibly wrote twice at addr 40d6 (46->F7)
WARNING: possibly wrote twice at addr 40d7 (2B->06)
WARNING: possibly wrote twice at addr 40d8 (4E->06)
WARNING: possibly wrote twice at addr 40d9 (2B->07)
WARNING: possibly wrote twice at addr 40da (3A->14)
WARNING: possibly wrote twice at addr 40db (6E->07)
WARNING: possibly wrote twice at addr 40dc (67->21)
WARNING: possibly wrote twice at addr 40dd (CD->07)
WARNING: possibly wrote twice at addr 40de (C0->2D)
WARNING: possibly wrote twice at addr 40df (40->07)
WARNING: possibly wrote twice at addr 40e0 (C1->39)
WARNING: possibly wrote twice at addr 40e1 (C9->07)
WARNING: possibly wrote twice at addr 40e2 (C5->44)
WARNING: possibly wrote twice at addr 40e3 (F8->07)
WARNING: possibly wrote twice at addr 40e4 (04->4F)
WARNING: possibly wrote twice at addr 40e5 (56->07)
WARNING: possibly wrote twice at addr 40e6 (23->59)
WARNING: possibly wrote twice at addr 40e7 (5E->07)
WARNING: possibly wrote twice at addr 40e8 (F8->62)
WARNING: possibly wrote twice at addr 40e9 (09->07)
WARNING: possibly wrote twice at addr 40ea (46->6B)
WARNING: possibly wrote twice at addr 40eb (2B->07)
WARNING: possibly wrote twice at addr 40ec (4E->73)
WARNING: possibly wrote twice at addr 40ed (2B->07)
WARNING: possibly wrote twice at addr 40ee (3A->7B)
WARNING: possibly wrote twice at addr 40ef (66->07)
WARNING: possibly wrote twice at addr 40f0 (6F->83)
WARNING: possibly wrote twice at addr 40f1 (CD->07)
WARNING: possibly wrote twice at addr 40f2 (B4->8A)
WARNING: possibly wrote twice at addr 40f3 (41->07)
WARNING: possibly wrote twice at addr 40f4 (C1->90)
WARNING: possibly wrote twice at addr 40f5 (C9->07)
WARNING: possibly wrote twice at addr 40f6 (F8->97)
WARNING: possibly wrote twice at addr 40f7 (02->07)
WARNING: possibly wrote twice at addr 40f8 (AF->9D)
WARNING: possibly wrote twice at addr 40f9 (BE->07)
WARNING: possibly wrote twice at addr 40fa (28->A2)
WARNING: possibly wrote twice at addr 40fb (05->07)
WARNING: possibly wrote twice at addr 40fc (F0->A7)
WARNING: possibly wrote twice at addr 40fd (4B->07)
WARNING: possibly wrote twice at addr 40fe (86->AC)
WARNING: possibly wrote twice at addr 40ff (E0->07)
WARNING: possibly wrote twice at addr 4100 (4B->B1)
WARNING: possibly wrote twice at addr 4101 (23->07)
WARNING: possibly wrote twice at addr 4102 (AF->B6)
WARNING: possibly wrote twice at addr 4103 (BE->07)
WARNING: possibly wrote twice at addr 4104 (28->BA)
WARNING: possibly wrote twice at addr 4105 (05->07)
WARNING: possibly wrote twice at addr 4106 (F0->BE)
WARNING: possibly wrote twice at addr 4107 (4A->07)
WARNING: possibly wrote twice at addr 4108 (86->C1)
WARNING: possibly wrote twice at addr 4109 (E0->07)
WARNING: possibly wrote twice at addr 410a (4A->C4)
WARNING: possibly wrote twice at addr 410b (C9->07)
WARNING: possibly wrote twice at addr 410c (E5->C8)
WARNING: possibly wrote twice at addr 410d (E5->07)
WARNING: possibly wrote twice at addr 410e (F0->CB)
WARNING: possibly wrote twice at addr 410f (40->07)
WARNING: possibly wrote twice at addr 4110 (CB->CE)
WARNING: possibly wrote twice at addr 4111 (77->07)
WARNING: possibly wrote twice at addr 4112 (20->D1)
WARNING: possibly wrote twice at addr 4113 (05->07)
WARNING: possibly wrote twice at addr 4114 (21->D4)
WARNING: possibly wrote twice at addr 4115 (00->07)
WARNING: possibly wrote twice at addr 4116 (98->D6)
WARNING: possibly wrote twice at addr 4117 (18->07)
WARNING: possibly wrote twice at addr 4118 (14->D9)
WARNING: possibly wrote twice at addr 4119 (21->07)
WARNING: possibly wrote twice at addr 411a (00->DB)
WARNING: possibly wrote twice at addr 411b (9C->07)
WARNING: possibly wrote twice at addr 411c (18->DD)
WARNING: possibly wrote twice at addr 411d (0F->07)
WARNING: possibly wrote twice at addr 411e (E5->DF)
WARNING: possibly wrote twice at addr 411f (F0->07)
WARNING: possibly wrote twice at addr 4120 (40->21)
WARNING: possibly wrote twice at addr 4121 (CB->90)
WARNING: possibly wrote twice at addr 4122 (5F->40)
WARNING: possibly wrote twice at addr 4123 (20->4F)
WARNING: possibly wrote twice at addr 4124 (05->06)
WARNING: possibly wrote twice at addr 4125 (21->00)
WARNING: possibly wrote twice at addr 4126 (00->09)
WARNING: possibly wrote twice at addr 4127 (98->09)
WARNING: possibly wrote twice at addr 4128 (18->4E)
WARNING: possibly wrote twice at addr 4129 (03->23)
WARNING: possibly wrote twice at addr 412a (21->46)
WARNING: possibly wrote twice at addr 412b (00->C9)
WARNING: possibly wrote twice at addr 412c (9C->FA)
WARNING: possibly wrote twice at addr 412d (C5->EB)
WARNING: possibly wrote twice at addr 412e (AF->C0)
WARNING: possibly wrote twice at addr 412f (B3->E6)
WARNING: possibly wrote twice at addr 4130 (28->01)
WARNING: possibly wrote twice at addr 4131 (07->20)
WARNING: possibly wrote twice at addr 4132 (01->14)
WARNING: possibly wrote twice at addr 4133 (20->1A)
WARNING: possibly wrote twice at addr 4134 (00->13)
WARNING: possibly wrote twice at addr 4135 (09->CB)
WARNING: possibly wrote twice at addr 4136 (1D->7F)
WARNING: possibly wrote twice at addr 4137 (20->20)
WARNING: possibly wrote twice at addr 4138 (FC->06)
WARNING: possibly wrote twice at addr 4139 (06->CB)
WARNING: possibly wrote twice at addr 413a (00->77)
WARNING: possibly wrote twice at addr 413b (4A->28)
WARNING: possibly wrote twice at addr 413c (09->09)
WARNING: possibly wrote twice at addr 413d (C1->18)
WARNING: possibly wrote twice at addr 413e (D1->06)
WARNING: possibly wrote twice at addr 413f (E5->1A)
WARNING: possibly wrote twice at addr 4140 (D5->13)
WARNING: possibly wrote twice at addr 4141 (F0->CB)
WARNING: possibly wrote twice at addr 4142 (41->7F)
WARNING: possibly wrote twice at addr 4143 (E6->28)
WARNING: possibly wrote twice at addr 4144 (02->01)
WARNING: possibly wrote twice at addr 4145 (20->13)
WARNING: possibly wrote twice at addr 4146 (FA->C9)
WARNING: possibly wrote twice at addr 4147 (2A->1A)
WARNING: possibly wrote twice at addr 4148 (02->13)
WARNING: possibly wrote twice at addr 4149 (03->CB)
WARNING: possibly wrote twice at addr 414a (15->7F)
WARNING: possibly wrote twice at addr 414b (20->20)
WARNING: possibly wrote twice at addr 414c (F4->24)
WARNING: possibly wrote twice at addr 414d (E1->CB)
WARNING: possibly wrote twice at addr 414e (54->77)
WARNING: possibly wrote twice at addr 414f (E1->20)
WARNING: possibly wrote twice at addr 4150 (1D->0E)
WARNING: possibly wrote twice at addr 4151 (28->CB)
WARNING: possibly wrote twice at addr 4152 (0A->6F)
WARNING: possibly wrote twice at addr 4153 (C5->20)
WARNING: possibly wrote twice at addr 4154 (01->01)
WARNING: possibly wrote twice at addr 4155 (20->C9)
WARNING: possibly wrote twice at addr 4156 (00->E6)
WARNING: possibly wrote twice at addr 4157 (09->0F)
WARNING: possibly wrote twice at addr 4158 (C1->CB)
WARNING: possibly wrote twice at addr 4159 (E5->37)
WARNING: possibly wrote twice at addr 415a (D5->EA)
WARNING: possibly wrote twice at addr 415b (18->F0)
WARNING: possibly wrote twice at addr 415c (E4->C0)
WARNING: possibly wrote twice at addr 415d (C9->18)
WARNING: possibly wrote twice at addr 415e (C5->4C)
WARNING: possibly wrote twice at addr 415f (F8->47)
WARNING: possibly wrote twice at addr 4160 (0B->E6)
WARNING: possibly wrote twice at addr 4161 (56->30)
WARNING: possibly wrote twice at addr 4162 (2B->CB)
WARNING: possibly wrote twice at addr 4163 (5E->27)
WARNING: possibly wrote twice at addr 4164 (2B->CB)
WARNING: possibly wrote twice at addr 4165 (46->27)
WARNING: possibly wrote twice at addr 4166 (2B->EA)
WARNING: possibly wrote twice at addr 4167 (4E->F4)
WARNING: possibly wrote twice at addr 4168 (F8->C0)
WARNING: possibly wrote twice at addr 4169 (04->78)
WARNING: possibly wrote twice at addr 416a (D5->E6)
WARNING: possibly wrote twice at addr 416b (56->0F)
WARNING: possibly wrote twice at addr 416c (23->CD)
WARNING: possibly wrote twice at addr 416d (5E->2D)
WARNING: possibly wrote twice at addr 416e (23->42)
WARNING: possibly wrote twice at addr 416f (2A->18)
WARNING: possibly wrote twice at addr 4170 (6E->3A)
WARNING: possibly wrote twice at addr 4171 (67->E6)
WARNING: possibly wrote twice at addr 4172 (CD->7F)
WARNING: possibly wrote twice at addr 4173 (2D->EA)
WARNING: possibly wrote twice at addr 4175 (C1->C0)
WARNING: possibly wrote twice at addr 4176 (C9->CD)
WARNING: possibly wrote twice at addr 4177 (21->20)
WARNING: possibly wrote twice at addr 4178 (02->41)
WARNING: possibly wrote twice at addr 4179 (C0->79)
WARNING: possibly wrote twice at addr 417a (CB->EA)
WARNING: possibly wrote twice at addr 417b (21->F8)
WARNING: possibly wrote twice at addr 417c (CB->C0)
WARNING: possibly wrote twice at addr 417d (21->78)
WARNING: possibly wrote twice at addr 417e (06->EA)
WARNING: possibly wrote twice at addr 417f (00->F9)
WARNING: possibly wrote twice at addr 4180 (09->C0)
WARNING: possibly wrote twice at addr 4181 (7E->1A)
WARNING: possibly wrote twice at addr 4182 (5F->13)
WARNING: possibly wrote twice at addr 4183 (C9->CB)
WARNING: possibly wrote twice at addr 4184 (C5->7F)
WARNING: possibly wrote twice at addr 4185 (F8->20)
WARNING: possibly wrote twice at addr 4186 (04->14)
WARNING: possibly wrote twice at addr 4187 (4E->47)
WARNING: possibly wrote twice at addr 4188 (CD->E6)
WARNING: possibly wrote twice at addr 4189 (77->30)
WARNING: possibly wrote twice at addr 418a (41->CB)
WARNING: possibly wrote twice at addr 418b (C1->27)
WARNING: possibly wrote twice at addr 418c (C9->CB)
WARNING: possibly wrote twice at addr 418d (21->27)
WARNING: possibly wrote twice at addr 418e (00->EA)
WARNING: possibly wrote twice at addr 418f (C0->F4)
WARNING: possibly wrote twice at addr 4190 (CB->C0)
WARNING: possibly wrote twice at addr 4191 (21->78)
WARNING: possibly wrote twice at addr 4192 (CB->E6)
WARNING: possibly wrote twice at addr 4193 (21->0F)
WARNING: possibly wrote twice at addr 4194 (06->CB)
WARNING: possibly wrote twice at addr 4195 (00->37)
WARNING: possibly wrote twice at addr 4196 (09->EA)
WARNING: possibly wrote twice at addr 4197 (7E->F0)
WARNING: possibly wrote twice at addr 4198 (83->C0)
WARNING: possibly wrote twice at addr 4199 (22->18)
WARNING: possibly wrote twice at addr 419a (7E->10)
WARNING: possibly wrote twice at addr 419b (82->47)
WARNING: possibly wrote twice at addr 419c (22->E6)
WARNING: possibly wrote twice at addr 419d (C9->30)
WARNING: possibly wrote twice at addr 419e (C5->CB)
WARNING: possibly wrote twice at addr 419f (F8->27)
WARNING: possibly wrote twice at addr 41a0 (04->CB)
WARNING: possibly wrote twice at addr 41a1 (4E->27)
WARNING: possibly wrote twice at addr 41a2 (23->EA)
WARNING: possibly wrote twice at addr 41a3 (56->F4)
WARNING: possibly wrote twice at addr 41a4 (23->C0)
WARNING: possibly wrote twice at addr 41a5 (5E->78)
WARNING: possibly wrote twice at addr 41a6 (CD->E6)
WARNING: possibly wrote twice at addr 41a7 (8D->0F)
WARNING: possibly wrote twice at addr 41a8 (41->CD)
WARNING: possibly wrote twice at addr 41a9 (C1->2D)
WARNING: possibly wrote twice at addr 41aa (C9->42)
WARNING: possibly wrote twice at addr 41ab (F8->AF)
WARNING: possibly wrote twice at addr 41ac (02->EA)
WARNING: possibly wrote twice at addr 41ad (2A->10)
WARNING: possibly wrote twice at addr 41af (43->FA)
WARNING: possibly wrote twice at addr 41b0 (2A->F4)
WARNING: possibly wrote twice at addr 41b1 (E0->C0)
WARNING: possibly wrote twice at addr 41b2 (42->EA)
WARNING: possibly wrote twice at addr 41b3 (C9->11)
WARNING: possibly wrote twice at addr 41b5 (F0->FA)
WARNING: possibly wrote twice at addr 41b6 (40->F0)
WARNING: possibly wrote twice at addr 41b7 (CB->C0)
WARNING: possibly wrote twice at addr 41b8 (77->EA)
WARNING: possibly wrote twice at addr 41b9 (20->12)
WARNING: possibly wrote twice at addr 41bb (21->FA)
WARNING: possibly wrote twice at addr 41bc (00->F8)
WARNING: possibly wrote twice at addr 41bd (98->C0)
WARNING: possibly wrote twice at addr 41be (18->EA)
WARNING: possibly wrote twice at addr 41bf (14->13)
WARNING: possibly wrote twice at addr 41c1 (00->FA)
WARNING: possibly wrote twice at addr 41c2 (9C->F9)
WARNING: possibly wrote twice at addr 41c3 (18->C0)
WARNING: possibly wrote twice at addr 41c4 (0F->F6)
WARNING: possibly wrote twice at addr 41c5 (E5->80)
WARNING: possibly wrote twice at addr 41c6 (F0->EA)
WARNING: possibly wrote twice at addr 41c7 (40->14)
WARNING: possibly wrote twice at addr 41c9 (5F->C9)
WARNING: possibly wrote twice at addr 41ca (20->FA)
WARNING: possibly wrote twice at addr 41cb (05->0E)
WARNING: possibly wrote twice at addr 41cc (21->C1)
WARNING: possibly wrote twice at addr 41cd (00->21)
WARNING: possibly wrote twice at addr 41ce (98->E6)
WARNING: possibly wrote twice at addr 41cf (18->C0)
WARNING: possibly wrote twice at addr 41d0 (03->BE)
WARNING: possibly wrote twice at addr 41d1 (21->C2)
WARNING: possibly wrote twice at addr 41d2 (00->E1)
WARNING: possibly wrote twice at addr 41d3 (9C->41)
WARNING: possibly wrote twice at addr 41d4 (C5->3D)
WARNING: possibly wrote twice at addr 41d5 (AF->EA)
WARNING: possibly wrote twice at addr 41d6 (B3->0E)
WARNING: possibly wrote twice at addr 41d7 (28->C1)
WARNING: possibly wrote twice at addr 41d8 (07->AF)
WARNING: possibly wrote twice at addr 41d9 (01->EA)
WARNING: possibly wrote twice at addr 41da (20->12)
WARNING: possibly wrote twice at addr 41dc (09->3E)
WARNING: possibly wrote twice at addr 41dd (1D->80)
WARNING: possibly wrote twice at addr 41de (20->EA)
WARNING: possibly wrote twice at addr 41df (FC->14)
WARNING: possibly wrote twice at addr 41e1 (00->FA)
WARNING: possibly wrote twice at addr 41e2 (4A->08)
WARNING: possibly wrote twice at addr 41e3 (09->C1)
WARNING: possibly wrote twice at addr 41e4 (C1->A7)
WARNING: possibly wrote twice at addr 41e5 (D1->C8)
WARNING: possibly wrote twice at addr 41e6 (E5->FA)
WARNING: possibly wrote twice at addr 41e7 (D5->0B)
WARNING: possibly wrote twice at addr 41e8 (F0->C1)
WARNING: possibly wrote twice at addr 41e9 (41->A7)
WARNING: possibly wrote twice at addr 41ea (E6->20)
WARNING: possibly wrote twice at addr 41eb (02->14)
WARNING: possibly wrote twice at addr 41ec (20->FA)
WARNING: possibly wrote twice at addr 41ee (0A->C0)
WARNING: possibly wrote twice at addr 41ef (22->CD)
WARNING: possibly wrote twice at addr 41f0 (03->20)
WARNING: possibly wrote twice at addr 41f1 (15->41)
WARNING: possibly wrote twice at addr 41f2 (20->79)
WARNING: possibly wrote twice at addr 41f3 (F4->EA)
WARNING: possibly wrote twice at addr 41f4 (E1->F8)
WARNING: possibly wrote twice at addr 41f5 (54->C0)
WARNING: possibly wrote twice at addr 41f6 (E1->78)
WARNING: possibly wrote twice at addr 41f7 (1D->EA)
WARNING: possibly wrote twice at addr 41f8 (28->F9)
WARNING: possibly wrote twice at addr 41f9 (0A->C0)
WARNING: possibly wrote twice at addr 41fa (C5->3E)
WARNING: possibly wrote twice at addr 41fb (01->01)
WARNING: possibly wrote twice at addr 41fc (20->EA)
WARNING: possibly wrote twice at addr 41fd (00->0B)
WARNING: possibly wrote twice at addr 41fe (09->C1)
WARNING: possibly wrote twice at addr 41ff (C1->C9)
WARNING: possibly wrote twice at addr 4200 (E5->FE)
WARNING: possibly wrote twice at addr 4201 (D5->01)
WARNING: possibly wrote twice at addr 4202 (18->20)
WARNING: possibly wrote twice at addr 4203 (E4->15)
WARNING: possibly wrote twice at addr 4204 (C9->FA)
WARNING: possibly wrote twice at addr 4205 (C5->00)
WARNING: possibly wrote twice at addr 4206 (F8->C1)
WARNING: possibly wrote twice at addr 4207 (0B->CD)
WARNING: possibly wrote twice at addr 4208 (46->20)
WARNING: possibly wrote twice at addr 4209 (2B->41)
WARNING: possibly wrote twice at addr 420a (4E->79)
WARNING: possibly wrote twice at addr 420b (2B->EA)
WARNING: possibly wrote twice at addr 420c (56->F8)
WARNING: possibly wrote twice at addr 420d (2B->C0)
WARNING: possibly wrote twice at addr 420e (5E->78)
WARNING: possibly wrote twice at addr 420f (F8->EA)
WARNING: possibly wrote twice at addr 4210 (04->F9)
WARNING: possibly wrote twice at addr 4211 (D5->C0)
WARNING: possibly wrote twice at addr 4212 (56->3E)
WARNING: possibly wrote twice at addr 4213 (23->02)
WARNING: possibly wrote twice at addr 4214 (5E->EA)
WARNING: possibly wrote twice at addr 4215 (23->0B)
WARNING: possibly wrote twice at addr 4216 (2A->C1)
WARNING: possibly wrote twice at addr 4217 (6E->3D)
WARNING: possibly wrote twice at addr 4218 (67->C9)
WARNING: possibly wrote twice at addr 4219 (CD->FA)
WARNING: possibly wrote twice at addr 421a (D4->01)
WARNING: possibly wrote twice at addr 421b (41->C1)
WARNING: possibly wrote twice at addr 421c (C1->CD)
WARNING: possibly wrote twice at addr 421d (C9->20)
WARNING: possibly wrote twice at addr 421e (21->41)
WARNING: possibly wrote twice at addr 421f (02->79)
WARNING: possibly wrote twice at addr 4220 (C0->EA)
WARNING: possibly wrote twice at addr 4221 (CB->F8)
WARNING: possibly wrote twice at addr 4222 (21->C0)
WARNING: possibly wrote twice at addr 4223 (CB->78)
WARNING: possibly wrote twice at addr 4224 (21->EA)
WARNING: possibly wrote twice at addr 4225 (06->F9)
WARNING: possibly wrote twice at addr 4226 (00->C0)
WARNING: possibly wrote twice at addr 4227 (09->AF)
WARNING: possibly wrote twice at addr 4228 (7A->EA)
WARNING: possibly wrote twice at addr 4229 (77->0B)
WARNING: possibly wrote twice at addr 422a (C9->C1)
WARNING: possibly wrote twice at addr 422b (C5->3C)
WARNING: possibly wrote twice at addr 422c (F8->C9)
WARNING: possibly wrote twice at addr 422d (04->21)
WARNING: possibly wrote twice at addr 422e (4E->3B)
WARNING: possibly wrote twice at addr 422f (23->42)
WARNING: possibly wrote twice at addr 4230 (56->4F)
WARNING: possibly wrote twice at addr 4231 (CD->06)
WARNING: possibly wrote twice at addr 4232 (1E->00)
WARNING: possibly wrote twice at addr 4233 (42->09)
WARNING: possibly wrote twice at addr 4234 (C1->09)
WARNING: possibly wrote twice at addr 4235 (C9->2A)
WARNING: possibly wrote twice at addr 4236 (C5->66)
WARNING: possibly wrote twice at addr 4237 (CD->6F)
WARNING: possibly wrote twice at addr 4238 (53->1A)
WARNING: possibly wrote twice at addr 4239 (42->13)
WARNING: possibly wrote twice at addr 423a (06->E9)
WARNING: possibly wrote twice at addr 423b (32->5B)
WARNING: possibly wrote twice at addr 423c (18->42)
WARNING: possibly wrote twice at addr 423d (00->63)
WARNING: possibly wrote twice at addr 423e (18->42)
WARNING: possibly wrote twice at addr 423f (00->7E)
WARNING: possibly wrote twice at addr 4240 (18->42)
WARNING: possibly wrote twice at addr 4241 (00->0F)
WARNING: possibly wrote twice at addr 4242 (18->46)
WARNING: possibly wrote twice at addr 4243 (00->0F)
WARNING: possibly wrote twice at addr 4244 (18->46)
WARNING: possibly wrote twice at addr 4245 (00->0F)
WARNING: possibly wrote twice at addr 4246 (05->46)
WARNING: possibly wrote twice at addr 4247 (C2->0F)
WARNING: possibly wrote twice at addr 4248 (3C->46)
WARNING: possibly wrote twice at addr 4249 (42->0F)
WARNING: possibly wrote twice at addr 424a (00->46)
WARNING: possibly wrote twice at addr 424b (C1->11)
WARNING: possibly wrote twice at addr 424c (18->46)
WARNING: possibly wrote twice at addr 424d (00->22)
WARNING: possibly wrote twice at addr 424e (18->46)
WARNING: possibly wrote twice at addr 424f (00->30)
WARNING: possibly wrote twice at addr 4250 (18->46)
WARNING: possibly wrote twice at addr 4251 (00->0F)
WARNING: possibly wrote twice at addr 4252 (C9->46)
WARNING: possibly wrote twice at addr 4253 (1B->0F)
WARNING: possibly wrote twice at addr 4254 (7B->46)
WARNING: possibly wrote twice at addr 4255 (B2->0F)
WARNING: possibly wrote twice at addr 4256 (C8->46)
WARNING: possibly wrote twice at addr 4257 (06->0F)
WARNING: possibly wrote twice at addr 4258 (33->46)
WARNING: possibly wrote twice at addr 4259 (18->0F)
WARNING: possibly wrote twice at addr 425a (00->46)
WARNING: possibly wrote twice at addr 425b (18->E6)
WARNING: possibly wrote twice at addr 425c (00->11)
WARNING: possibly wrote twice at addr 425d (18->EA)
WARNING: possibly wrote twice at addr 425e (00->EC)
WARNING: possibly wrote twice at addr 425f (18->C0)
WARNING: possibly wrote twice at addr 4260 (00->3E)
WARNING: possibly wrote twice at addr 4261 (18->01)
WARNING: possibly wrote twice at addr 4262 (00->C9)
WARNING: possibly wrote twice at addr 4263 (05->47)
WARNING: possibly wrote twice at addr 4264 (C2->21)
WARNING: possibly wrote twice at addr 4266 (42->C0)
WARNING: possibly wrote twice at addr 4267 (00->4E)
WARNING: possibly wrote twice at addr 4268 (18->23)
WARNING: possibly wrote twice at addr 4269 (00->78)
WARNING: possibly wrote twice at addr 426a (18->CB)
WARNING: possibly wrote twice at addr 426b (00->37)
WARNING: possibly wrote twice at addr 426c (18->E6)
WARNING: possibly wrote twice at addr 426d (00->0F)
WARNING: possibly wrote twice at addr 426e (18->81)
WARNING: possibly wrote twice at addr 426f (E3->22)
WARNING: possibly wrote twice at addr 4270 (F8->78)
WARNING: possibly wrote twice at addr 4271 (02->E6)
WARNING: possibly wrote twice at addr 4272 (5E->0F)
WARNING: possibly wrote twice at addr 4273 (23->81)
WARNING: possibly wrote twice at addr 4274 (56->77)
WARNING: possibly wrote twice at addr 4275 (CD->3E)
WARNING: possibly wrote twice at addr 4276 (36->01)
WARNING: possibly wrote twice at addr 4277 (42->EA)
WARNING: possibly wrote twice at addr 4278 (C9->08)
WARNING: possibly wrote twice at addr 4279 (C5->C1)
WARNING: possibly wrote twice at addr 427a (F8->EA)
WARNING: possibly wrote twice at addr 427b (04->0B)
WARNING: possibly wrote twice at addr 427c (56->C1)
WARNING: possibly wrote twice at addr 427d (23->C9)
WARNING: possibly wrote twice at addr 427e (5E->EA)
WARNING: possibly wrote twice at addr 427f (F8->0E)
WARNING: possibly wrote twice at addr 4280 (09->C1)
WARNING: possibly wrote twice at addr 4281 (46->AF)
WARNING: possibly wrote twice at addr 4282 (2B->C9)
WARNING: possibly wrote twice at addr 4283 (4E->FA)
WARNING: possibly wrote twice at addr 4284 (2B->EB)
WARNING: possibly wrote twice at addr 4285 (3A->C0)
WARNING: possibly wrote twice at addr 4286 (66->E6)
WARNING: possibly wrote twice at addr 4287 (6F->02)
WARNING: possibly wrote twice at addr 4288 (CD->20)
WARNING: possibly wrote twice at addr 4289 (1E->14)
WARNING: possibly wrote twice at addr 428a (41->1A)
WARNING: possibly wrote twice at addr 428b (C1->13)
WARNING: possibly wrote twice at addr 428c (C9->CB)
WARNING: possibly wrote twice at addr 428d (21->7F)
WARNING: possibly wrote twice at addr 428e (03->20)
WARNING: possibly wrote twice at addr 428f (C0->06)
WARNING: possibly wrote twice at addr 4290 (CB->CB)
WARNING: possibly wrote twice at addr 4291 (21->77)
WARNING: possibly wrote twice at addr 4292 (CB->28)
WARNING: possibly wrote twice at addr 4293 (21->09)
WARNING: possibly wrote twice at addr 4294 (06->18)
WARNING: possibly wrote twice at addr 4295 (00->06)
WARNING: possibly wrote twice at addr 4296 (09->1A)
WARNING: possibly wrote twice at addr 4297 (7E->13)
WARNING: possibly wrote twice at addr 4298 (5F->CB)
WARNING: possibly wrote twice at addr 4299 (C9->7F)
WARNING: possibly wrote twice at addr 429a (C5->28)
WARNING: possibly wrote twice at addr 429b (F8->01)
WARNING: possibly wrote twice at addr 429c (04->13)
WARNING: possibly wrote twice at addr 429d (4E->C9)
WARNING: possibly wrote twice at addr 429e (CD->1A)
WARNING: possibly wrote twice at addr 429f (8D->13)
WARNING: possibly wrote twice at addr 42a0 (42->CB)
WARNING: possibly wrote twice at addr 42a1 (C1->7F)
WARNING: possibly wrote twice at addr 42a2 (C9->20)
WARNING: possibly wrote twice at addr 42a3 (2A->24)
WARNING: possibly wrote twice at addr 42a4 (E2->CB)
WARNING: possibly wrote twice at addr 42a5 (0C->77)
WARNING: possibly wrote twice at addr 42a6 (05->20)
WARNING: possibly wrote twice at addr 42a7 (20->0E)
WARNING: possibly wrote twice at addr 42a8 (FA->CB)
WARNING: possibly wrote twice at addr 42a9 (C9->6F)
WARNING: possibly wrote twice at addr 42aa (C5->20)
WARNING: possibly wrote twice at addr 42ab (F8->01)
WARNING: possibly wrote twice at addr 42ac (04->C9)
WARNING: possibly wrote twice at addr 42ad (4E->E6)
WARNING: possibly wrote twice at addr 42ae (F8->0F)
WARNING: possibly wrote twice at addr 42af (07->CB)
WARNING: possibly wrote twice at addr 42b0 (46->37)
WARNING: possibly wrote twice at addr 42b1 (2B->EA)
WARNING: possibly wrote twice at addr 42b2 (3A->F1)
WARNING: possibly wrote twice at addr 42b3 (6E->C0)
WARNING: possibly wrote twice at addr 42b4 (67->18)
WARNING: possibly wrote twice at addr 42b5 (CD->4C)
WARNING: possibly wrote twice at addr 42b6 (A3->47)
WARNING: possibly wrote twice at addr 42b7 (42->E6)
WARNING: possibly wrote twice at addr 42b8 (C1->30)
WARNING: possibly wrote twice at addr 42b9 (C9->CB)
WARNING: possibly wrote twice at addr 42ba (C5->27)
WARNING: possibly wrote twice at addr 42bb (F8->CB)
WARNING: possibly wrote twice at addr 42bc (04->27)
WARNING: possibly wrote twice at addr 42bd (56->EA)
WARNING: possibly wrote twice at addr 42be (23->F5)
WARNING: possibly wrote twice at addr 42bf (5E->C0)
WARNING: possibly wrote twice at addr 42c0 (F8->78)
WARNING: possibly wrote twice at addr 42c1 (09->E6)
WARNING: possibly wrote twice at addr 42c2 (46->0F)
WARNING: possibly wrote twice at addr 42c3 (2B->CD)
WARNING: possibly wrote twice at addr 42c4 (4E->80)
WARNING: possibly wrote twice at addr 42c5 (2B->43)
WARNING: possibly wrote twice at addr 42c6 (3A->18)
WARNING: possibly wrote twice at addr 42c7 (66->3A)
WARNING: possibly wrote twice at addr 42c8 (6F->E6)
WARNING: possibly wrote twice at addr 42c9 (CD->7F)
WARNING: possibly wrote twice at addr 42ca (C5->EA)
WARNING: possibly wrote twice at addr 42cb (41->02)
WARNING: possibly wrote twice at addr 42cc (C1->C1)
WARNING: possibly wrote twice at addr 42cd (C9->CD)
Running ../bin/ZGB_TEMPLATE_Debug.gb

Last edited by npzman (2017-06-01 19:55:33)


Twitter : @Sfeedman please follow
Join : sfeed.club my website please join

Offline

 

#14 2017-07-24 06:10:12

npzman
Banned
From:
Registered: 2014-11-19
Posts: 197

Re: ZGB: So I am stuck at the music chapter

I am back still need help on getting debug to work. I also just got the everdrive GB


Twitter : @Sfeedman please follow
Join : sfeed.club my website please join

Offline

 

#15 2017-07-25 08:27:46

npzman
Banned
From:
Registered: 2014-11-19
Posts: 197

Re: ZGB: So I am stuck at the music chapter

Well now I will just update my ZGB


Twitter : @Sfeedman please follow
Join : sfeed.club my website please join

Offline

 

#16 2017-07-25 13:58:11

npzman
Banned
From:
Registered: 2014-11-19
Posts: 197

Re: ZGB: So I am stuck at the music chapter

I decided to reinstall ZGB from scratch and re do the tutorial when I get to the enemy chapter I get this following error

Code:

C:\Users\owner\Desktop\ZGB-template>C:\gbdk\bin\make-3.81-bin\bin\make -C C:\gbdk\ZGB\common\src
make: Entering directory `C:/gbdk/ZGB/common/src'
make: Nothing to be done for `all'.
make: Leaving directory `C:/gbdk/ZGB/common/src'

C:\Users\owner\Desktop\ZGB-template>cd src

C:\Users\owner\Desktop\ZGB-template\src>C:\gbdk\bin\make-3.81-bin\bin\make run
compiling SpriteEnemy.c
SpriteEnemy.c:12: error 47: indirections to different types assignment
from type 'unsigned-char [8] fixed'
  to type 'struct EnemyInfo generic* auto'
SpriteEnemy.c:17: error 47: indirections to different types assignment
from type 'unsigned-char [8] fixed'
  to type 'struct EnemyInfo generic* auto'
make: *** [../Release/SpriteEnemy.o] Error 1

C:\Users\owner\Desktop\ZGB-template\src>cd ..

C:\Users\owner\Desktop\ZGB-template>pause
Press any key to continue . . .

This is my code on SpriteEnemy.c

Code:

#pragma bank 2
#include "SpriteEnemy.h"
UINT8 bank_SPRITE_ENEMY = 2;

#include "SpriteManager.h"

struct EnemyInfo {
    INT8 vy;
};

void Start_SPRITE_ENEMY() {
    struct EnemyInfo* data = THIS->custom_data;
    data->vy = 1;
}

void Update_SPRITE_ENEMY() {
    struct EnemyInfo* data = THIS->custom_data;
    if(TranslateSprite(THIS, 0, data->vy)) {
        data->vy = -data->vy;
    }
}

void Destroy_SPRITE_ENEMY() {
}

So if someone can help me with that I will be much thankful

Last edited by npzman (2017-07-25 14:01:47)


Twitter : @Sfeedman please follow
Join : sfeed.club my website please join

Offline

 

#17 2017-07-25 15:07:10

ssjason123
Member
Registered: 2017-03-21
Posts: 45

Re: ZGB: So I am stuck at the music chapter

It sounds like you need to cast THIS->custom_data to struct EnemyInfo * in both the Start and Update functions.

Offline

 

#18 2017-07-25 15:36:57

DonaldHays
Member
From: Seattle
Registered: 2016-08-01
Posts: 36
Website

Re: ZGB: So I am stuck at the music chapter

Answer

Your lines of code that read:

Code:

struct EnemyInfo* data = THIS->custom_data;

Need to be:

Code:

struct EnemyInfo* data = (struct EnemyInfo *)THIS->custom_data;

The Reason

In ZGB, Sprite's `custom_data` is typed as UInt8[8], or a buffer of 8 unsigned bytes. The type of `data` in your functions is `struct EnemyInfo*`, or a pointer to an `EnemyInfo`. These types are different, and the compiler doesn't like you trying to simply assign a value of type `UInt[]` to a value of type `struct EnemyInfo *`. The cast tells the compiler to reinterpret the type of `custom_data` to be a `struct EnemyInfo*`.

If any of this is unclear, I recommend reading up on casting in C, pointers in C, and casting pointer types in C.

Why you need to make this change from the tutorial

I noticed that your code is identical to the ZGB tutorial on enemies. It doesn't have the cast. When it comes to C compilers and versions of the C standard, sometimes they're more or less permissive about certain operations than others. It looks like ZGB is currently recommending installation of a newer version of SDCC than it perhaps used to (it's recommending installing the latest version of SDCC, but as I understand it was originally built on the original GBDK, which used a substantially older version of SDCC). ZGB may need to either revert to recommending the older version of SDCC (unlikely, because I believe Zal0 is hoping to migrate to GBDK-N), or the tutorial may need to be updated to reflect the new SDCC's requirements.

One last bit on reading error messages

You've indicated before that you're new to C programming, and this last bit is written assuming as such, but feel free to disregard it if you already know what I'm talking about:

The useful part of the compiler error output is this:

Code:

SpriteEnemy.c:12: error 47: indirections to different types assignment
from type 'unsigned-char [8] fixed'
  to type 'struct EnemyInfo generic* auto'
SpriteEnemy.c:17: error 47: indirections to different types assignment
from type 'unsigned-char [8] fixed'
  to type 'struct EnemyInfo generic* auto'

There are two different errors listed here. Each error is made up of four parts: the file name, the line number, the error code, and the error message. The file name and line number are useful because they help you know where there's something wrong. Specifically, here they specify SpriteEnemy.c, lines 12 (first error) and 17 (second error). Looking at your SpriteEnemy.c, those are the lines that read:

Code:

struct EnemyInfo* data = THIS->custom_data;

So you know that it's not just SpriteEnemy.c that the compiler is unhappy with, but those lines specifically.

The next part of the error messages is the error codes, and honestly you can usually ignore that, because the useful part will usually be written out in the error message. In this case, the message can seem difficult to read, but there's some things that should stand out. It talks about assigning different types, so that should clue you in that it's complaining about a type mismatch. It then reads "from type 'unsigned-char [8] fixed'", which is describing in more compiler-y terms that the source type is the array of 8 unsigned bytes, and then "to type 'struct EnemyInfo generic* auto`", which is describing the EnemyInfo pointer. So it's not happy with the assignment of a byte array to an EnemyInfo pointer.

Being able to read and understand error messages is really important, because programmers encounter them all day long. It will of course take time to come to recognize what the difference messages are telling you, but it's a crucial skill to develop, so hopefully I've given some useful information to help you on your way towards being able to solve compiler errors yourself.

Last edited by DonaldHays (2017-07-25 15:44:10)

Offline

 

#19 2017-07-25 23:39:56

npzman
Banned
From:
Registered: 2014-11-19
Posts: 197

Re: ZGB: So I am stuck at the music chapter

I now tried showing the character behind him
https://s25.postimg.org/4jbf0xyfj/help1.jpg

So when the character goes up it shows tiles 4 and 5 how can I do that. BTW Debug finally works


This is the code I changed after finishing the tutorial on SpritePlayer.c

Code:

...

const UINT8 anim_idle[] = {1, 0};
const UINT8 anim_walk[] = {2, 1, 2};
const UINT8 anim_walkback[] = {4, 5, 4};

...

    if(KEY_PRESSED(J_UP)) {
        TranslateSprite(THIS, 0, -1 << delta_time);
        SetSpriteAnim(THIS, anim_walkback, 15);
    } 
    if(KEY_PRESSED(J_DOWN)) {
        TranslateSprite(THIS, 0, 1 << delta_time);
        SetSpriteAnim(THIS, anim_walk, 15);
    }
    if(KEY_PRESSED(J_LEFT)) {
        TranslateSprite(THIS, -1 << delta_time, 0);
        SetSpriteAnim(THIS, anim_walk, 15);
    }
    if(KEY_PRESSED(J_RIGHT)) {
        TranslateSprite(THIS, 1 << delta_time, 0);
        SetSpriteAnim(THIS, anim_walk, 15);
    }

Last edited by npzman (2017-07-26 00:45:06)


Twitter : @Sfeedman please follow
Join : sfeed.club my website please join

Offline

 

#20 2017-07-26 16:47:05

Zalo
Member
From: Spain
Registered: 2016-07-26
Posts: 103
Website

Re: ZGB: So I am stuck at the music chapter

So, yes, basically since I have updated the compiler recently (it is now using the latest version of SDCC) there might be a few errors on the tutorials. If you find anything incorrect please let me know (I have already fixed this one)

Also, npzman, instead of wasting your time sending annoying emails please read everything that DonaldHays wrote because I couldn't have explained it better. Glad you are progressing through the tutorial

Last edited by Zalo (2017-07-29 07:04:19)

Offline

 

#21 2017-07-30 09:40:30

npzman
Banned
From:
Registered: 2014-11-19
Posts: 197

Re: ZGB: So I am stuck at the music chapter

What I mean is can I show a different tile when the player is going up


Twitter : @Sfeedman please follow
Join : sfeed.club my website please join

Offline

 

#22 2017-08-02 11:19:37

npzman
Banned
From:
Registered: 2014-11-19
Posts: 197

Re: ZGB: So I am stuck at the music chapter

I tried to compile temple of Velcro. That I got from here and I got those compile errors. Even though I got ZGB installed fine and ZGB template works. Please any one knows how to fix

Code:

C:\Users\owner\Desktop\TempleOfVelcro-master>set ZGB_PATH=zgb\common

C:\Users\owner\Desktop\TempleOfVelcro-master>C:\gbdk\bin\make-3.81-bin\bin\make -C zgb\common\src
make: *** zgb\common\src: No such file or directory.  Stop.

C:\Users\owner\Desktop\TempleOfVelcro-master>cd src

C:\Users\owner\Desktop\TempleOfVelcro-master\src>C:\gbdk\bin\make-3.81-bin\bin\make run
makefile:7: zgb\common/src/MakefileCommon: No such file or directory
make: *** No rule to make target `zgb\common/src/MakefileCommon'.  Stop.

C:\Users\owner\Desktop\TempleOfVelcro-master\src>cd ..

C:\Users\owner\Desktop\TempleOfVelcro-master>pause
Press any key to continue . . .

Last edited by npzman (2017-08-02 11:23:10)


Twitter : @Sfeedman please follow
Join : sfeed.club my website please join

Offline

 

#23 2017-08-03 08:11:32

Zalo
Member
From: Spain
Registered: 2016-07-26
Posts: 103
Website

Re: ZGB: So I am stuck at the music chapter

Temple of Velcro uses a modified version of ZGB

Offline

 

#24 2017-08-03 12:24:05

Tauwasser
Member
Registered: 2010-10-23
Posts: 160

Re: ZGB: So I am stuck at the music chapter

Have you tried making ZGB_PATH absolute? Also, the message uses different slashes, so try forward slashes, too smile

Offline

 

#25 2017-08-04 12:42:29

npzman
Banned
From:
Registered: 2014-11-19
Posts: 197

Re: ZGB: So I am stuck at the music chapter

Tauwasser wrote:

Have you tried making ZGB_PATH absolute? Also, the message uses different slashes, so try forward slashes, too smile

show me how that works


Twitter : @Sfeedman please follow
Join : sfeed.club my website please join

Offline

 

Board footer

Powered by PunBB
© Copyright 2002–2005 Rickard Andersson