Log inRegister an accountBrowse CSDbHelp & documentationFacts & StatisticsThe forumsAvailable RSS-feeds on CSDbSupport CSDb Commodore 64 Scene Database
You are not logged in - nap
CSDb User Forums


Forums > C64 Coding > C64 Assembly Tutorial
2007-03-17 18:29
lan64+
Account closed

Registered: Mar 2007
Posts: 10
C64 Assembly Tutorial

Hi

Which the best tutorial for learn Assembly language???

And I want to make a multipart demo with some screens,sinus and rasters,but I have a little problem....

1 - I have a "Delta screen with rasters + some chars,etc"...but I need a routine for "Space Key and Load the Next part"


Please,help me!

Thanx
2007-03-17 19:06
A3

Registered: Dec 2005
Posts: 362
For some help read this topic:

Code, how to get started?

or:

The Best C64 Ml tutorial collection.
2007-03-17 21:02
lan64+
Account closed

Registered: Mar 2007
Posts: 10
Violator

Thanks for your tips.


But help me with my "Demo Question"....send me some routine for my "Trackmo"


2007-03-17 21:12
yago

Registered: May 2002
Posts: 332
10 REM your demo
20 GET A$:IF A$<>" " THEN 20
30 LOAD "NEXTPART",8
2007-03-17 22:30
iAN CooG

Registered: May 2002
Posts: 3138
LOL
2007-03-18 00:23
hollowman

Registered: Dec 2001
Posts: 474
Quote: Violator

Thanks for your tips.


But help me with my "Demo Question"....send me some routine for my "Trackmo"




download Loaders , assemble firqinit.seq and firqload.seq
and use the loader like this

demostart
	sei
	jsr firqinit

demopart
	inc $d020
checkspace
	lda $dc01
	cmp #239
	bne demopart


	lda #$3b
	sta $d011
	lda #$18
	sta $d018
	lda #$00
	sta $dc00
	lda #$80
	sta $d012
	lda #<loaderpart
	sta $0314
	lda #>loaderpart
	sta $0315
	lda #$01
	sta $d01a
	lda #$7f
	sta $dc0d
	bit $dc0d
	dec $d019
	cli
	
	ldx #"s" ;first character of filename
	ldy #"h" ;second character of filename
	lda #$00 ;load unpacked file by filename
	jsr firqload

	jmp nextdemopart
loaderpart
	inc $d019
	inc $d020
	jmp $ea7e
2007-03-31 03:59
lan64+
Account closed

Registered: Mar 2007
Posts: 10
Hollowman

Please send me a "Commodore Monitor" version from this code.


Thankx
2007-03-31 06:03
Nightlord

Registered: Jan 2003
Posts: 131
@lan64: use a cross-assembler or if you are dying to code on c64 then substitute every name you see with a $cxxx address

2007-03-31 13:42
Scout

Registered: Dec 2002
Posts: 1568
Quote: @lan64: use a cross-assembler or if you are dying to code on c64 then substitute every name you see with a $cxxx address



Personally I think it's not smart to learn coding assembler in a cross-dev. environment.
First try it in a monitor (every popular cart has one and some emulators have spartan versions) to learn about memory-addresses, registers, carry-flag behaviour etc.

Just my 2 euro-cents.
2007-03-31 14:19
lan64+
Account closed

Registered: Mar 2007
Posts: 10
Nightlord and Scout


I need a "little routine" for "load the nextpart",please help me.

I have build some simple intro using the "Demo Demon",but when I press space,nothing happens!!!!!

Then,I have found a simple routine for "Press Space",but I need anot
her

2007-03-31 14:23
Scout

Registered: Dec 2002
Posts: 1568
Quote: Nightlord and Scout


I need a "little routine" for "load the nextpart",please help me.

I have build some simple intro using the "Demo Demon",but when I press space,nothing happens!!!!!

Then,I have found a simple routine for "Press Space",but I need anot
her



A simple press space example (monitor example) and the same Hollowman gave you already:

.C:c000   AD 01 DC   LDA $DC01
.C:c003   C9 EF      CMP #$EF
.C:c005   D0 F9      BNE $C000
.C:c007   60         RTS


 
... 3 posts hidden. Click here to view all posts....
 
Previous - 1 | 2 - Next
RefreshSubscribe to this thread:

You need to be logged in to post in the forum.

Search the forum:
Search   for   in  
All times are CET.
Search CSDb
Advanced
Users Online
AüMTRöN
Slator/Arsenic/Stone..
Guests online: 131
Top Demos
1 Next Level  (9.7)
2 13:37  (9.7)
3 Mojo  (9.7)
4 Coma Light 13  (9.7)
5 Edge of Disgrace  (9.7)
6 No Bounds  (9.6)
7 Aliens in Wonderland  (9.6)
8 Comaland 100%  (9.6)
9 Uncensored  (9.6)
10 Wonderland XIV  (9.6)
Top onefile Demos
1 Layers  (9.6)
2 Cubic Dream  (9.6)
3 Party Elk 2  (9.6)
4 Copper Booze  (9.6)
5 TRSAC, Gabber & Pebe..  (9.5)
6 Rainbow Connection  (9.5)
7 Dawnfall V1.1  (9.5)
8 It's More Fun to Com..  (9.5)
9 Daah, Those Acid Pil..  (9.5)
10 Birth of a Flower  (9.5)
Top Groups
1 Nostalgia  (9.4)
2 Oxyron  (9.3)
3 Booze Design  (9.3)
4 Censor Design  (9.3)
5 SHAPE  (9.3)
Top Organizers
1 Burglar  (9.9)
2 Sixx  (9.8)
3 hedning  (9.7)
4 Irata  (9.7)
5 Tim  (9.7)

Home - Disclaimer
Copyright © No Name 2001-2024
Page generated in: 0.041 sec.