Forum comments in chronological order
Disclaimer: I am not responsible for what people (other than myself) write in the forums. Please report any abuse, such as insults, slander, spam and illegal material, and I will take appropriate actions. Don't feed the trolls.
Jag tar inget ansvar för det som skrivs i forumet, förutom mina egna inlägg. Vänligen rapportera alla inlägg som bryter mot reglerna, så ska jag se vad jag kan göra. Som regelbrott räknas till exempel förolämpningar, förtal, spam och olagligt material. Mata inte trålarna.
- Jun 2007
- Aug 2007
- Oct 2007
- Nov 2007
- Dec 2007
- Jan 2008
- Feb 2008
- Mar 2008
- Apr 2008
- May 2008
- Jun 2008
- Jul 2008
- Aug 2008
- Sep 2008
- Oct 2008
- Nov 2008
- Dec 2008
- Jan 2009
- Feb 2009
- Mar 2009
- Apr 2009
- May 2009
- Jun 2009
- Jul 2009
- Aug 2009
- Sep 2009
- Oct 2009
- Nov 2009
- Dec 2009
- Jan 2010
- Feb 2010
- Mar 2010
- Apr 2010
- May 2010
- Jun 2010
- Jul 2010
- Aug 2010
- Sep 2010
- Oct 2010
- Nov 2010
- Dec 2010
- Jan 2011
- Feb 2011
- Mar 2011
- Apr 2011
- May 2011
- Jun 2011
- Jul 2011
- Aug 2011
- Sep 2011
- Oct 2011
- Nov 2011
- Dec 2011
- Jan 2012
- Feb 2012
- Mar 2012
- Apr 2012
- May 2012
- Jun 2012
- Jul 2012
- Aug 2012
- Sep 2012
- Oct 2012
- Nov 2012
- Dec 2012
- Jan 2013
- Feb 2013
- Mar 2013
- Apr 2013
- May 2013
- Jun 2013
- Jul 2013
- Aug 2013
- Sep 2013
- Oct 2013
- Nov 2013
- Dec 2013
- Jan 2014
- Feb 2014
- Mar 2014
- Apr 2014
- May 2014
- Jun 2014
- Jul 2014
- Aug 2014
- Sep 2014
- Oct 2014
- Nov 2014
- Dec 2014
- Jan 2015
- Feb 2015
- Mar 2015
- Apr 2015
- May 2015
- Jun 2015
- Jul 2015
- Aug 2015
- Sep 2015
- Oct 2015
- Nov 2015
- Dec 2015
- Jan 2016
- Feb 2016
- Mar 2016
- Apr 2016
- May 2016
- Jun 2016
- Jul 2016
- Aug 2016
- Sep 2016
- Oct 2016
- Nov 2016
- Dec 2016
- Jan 2017
- Feb 2017
- Mar 2017
- Apr 2017
- May 2017
- Jun 2017
- Jul 2017
- Aug 2017
- Sep 2017
- Oct 2017
- Nov 2017
- Dec 2017
- Jan 2018
- Feb 2018
- Mar 2018
- Apr 2018
- May 2018
- Jun 2018
- Jul 2018
- Aug 2018
- Sep 2018
- Oct 2018
- Nov 2018
- Dec 2018
- Jan 2019
- Feb 2019
- Mar 2019
- Apr 2019
- May 2019
- Jun 2019
- Jul 2019
- Aug 2019
- Sep 2019
- Oct 2019
- Nov 2019
- Dec 2019
- Jan 2020
- Feb 2020
- Mar 2020
- Apr 2020
- May 2020
- Jun 2020
- Jul 2020
- Aug 2020
- Sep 2020
- Oct 2020
- Nov 2020
- Dec 2020
- Jan 2021
- Feb 2021
- Mar 2021
- Apr 2021
- May 2021
- Jun 2021
- Jul 2021
- Aug 2021
- Sep 2021
- Oct 2021
- Nov 2021
- Dec 2021
- Jan 2022
- Feb 2022
- Mar 2022
- Apr 2022
- May 2022
- Jun 2022
- Jul 2022
- Aug 2022
- Sep 2022
- Oct 2022
- Nov 2022
- Dec 2022
- Jan 2023
- Feb 2023
- Mar 2023
- Apr 2023
- May 2023
- Jun 2023
- Jul 2023
- Aug 2023
- Sep 2023
- Oct 2023
- Nov 2023
- Dec 2023
- Jan 2024
- Feb 2024
- Mar 2024
- Apr 2024
- May 2024
- Jun 2024
- Jul 2024
- Aug 2024
- Sep 2024
- Oct 2024
- Nov 2024
Jan 2024
kamikaze
Jones Kamikaze
Sat 6-Jan-2024 20:51
Jones Kamikaze
Sat 6-Jan-2024 20:51
Running this on Vice doesn't work. it plays the first 0.1 to 1 seconds of it, then resets.
This program works well in Vice.Did you load the prg-file?
If not:
You can not poke the program with a basic program reading data in a loop, because you then overwrite your basic program at adress 2049.
Remember that the first two bytes are not part of the program, but part of the program file: 01 08 is the start address $0801(=2049) where the program is loaded.
What you can do: You can poke each byte with a seperate poke command, no basic lines involved.
Or you can write the bytes with a basic program into a program file.
Vice has a monitor (Alt+H), verify that the bytes are correct loaded! use d 0801 for dumping the start of the program, and d again to show the next bytes.
Kind regards,
kamikaze
kamikaze
Jones Kamikaze
Sat 6-Jan-2024 22:42
Jones Kamikaze
Sat 6-Jan-2024 22:42
A program that writes the bytes to a file "a-mind-is-born" on a disk.
Can be copied and pasted in Vice.
Remember to create and attach a disk image for drive #8 first.
This program works also on a real C64 with a disk drive.
100 open1,8,1,"a-mind-is-born"
110 print#1,chr$(1);chr$(8);
120 for i=1to254:printi;
130 read a$:print a$;
140 h=asc(left$(a$,1))-asc("0"):ifh>9thenh=h-7
150 l=asc(right$(a$,1))-asc("0"):ifl>9thenl=l-7
160 print h*16+l
170 print#1,chr$(h*16+l);
180 next i
190 close 1
200 end
1000 data 0d,08,ff,d3,9e,32,32,32,35,00,00,00,19,41,1c,d0
1010 data 00,dc,00,00,11,d0,e0,0b,10,33,0e,61,90,f5,07,00
1020 data ff,1f,14,41,d5,24,15,25,15,53,15,61,d5,29,1b,0f
1030 data e6,13,e6,13,d0,02,e6,20,a9,61,85,1c,a7,20,e0,3f
1040 data f0,08,90,0c,4e,11,d0,6c,fc,ff,a0,6d,84,22,84,d7
1050 data 4a,4b,1c,a8,a5,13,29,30,d0,02,c6,1c,e0,2f,f0,11
1060 data b0,02,a2,02,c9,10,f0,09,8a,29,03,aa,b5,f3,85,0a
1070 data 2d,ab,00,b0,11,b7,22,b6,21,95,00,a5,13,4b,0e,aa
1080 data cb,f8,86,cc,49,07,85,0b,a5,13,29,0f,d0,0f,a9,b8
1090 data 47,14,90,02,85,14,29,07,aa,b5,f7,85,12,a0,08,b7
1100 data 0d,91,0f,88,10,f9,a8,b7,09,91,03,88,d0,f9,4c,7e
1110 data ea,78,8e,86,02,8e,21,d0,20,44,e5,a2,fd,bd,02,08
1120 data 95,02,ca,d0,f8,8e,15,03,4c,cc,00,a9,50,8d,11,d0
1130 data 58,ad,04,dc,a0,c3,0d,1c,d4,48,4b,04,a0,30,8c,18
1140 data d0,71,cb,e6,cb,71,cb,6a,05,20,a0,58,05,d5,91,cb
1150 data d0,df,2b,aa,02,62,00,18,26,20,12,24,13,10,00,00
run
load"a-mind-is-born",8,1
run
have fun!
I am truly in awe and want to thank Linus Åkesson for this exceptional piece of art!
Can be copied and pasted in Vice.
Remember to create and attach a disk image for drive #8 first.
This program works also on a real C64 with a disk drive.
100 open1,8,1,"a-mind-is-born"
110 print#1,chr$(1);chr$(8);
120 for i=1to254:printi;
130 read a$:print a$;
140 h=asc(left$(a$,1))-asc("0"):ifh>9thenh=h-7
150 l=asc(right$(a$,1))-asc("0"):ifl>9thenl=l-7
160 print h*16+l
170 print#1,chr$(h*16+l);
180 next i
190 close 1
200 end
1000 data 0d,08,ff,d3,9e,32,32,32,35,00,00,00,19,41,1c,d0
1010 data 00,dc,00,00,11,d0,e0,0b,10,33,0e,61,90,f5,07,00
1020 data ff,1f,14,41,d5,24,15,25,15,53,15,61,d5,29,1b,0f
1030 data e6,13,e6,13,d0,02,e6,20,a9,61,85,1c,a7,20,e0,3f
1040 data f0,08,90,0c,4e,11,d0,6c,fc,ff,a0,6d,84,22,84,d7
1050 data 4a,4b,1c,a8,a5,13,29,30,d0,02,c6,1c,e0,2f,f0,11
1060 data b0,02,a2,02,c9,10,f0,09,8a,29,03,aa,b5,f3,85,0a
1070 data 2d,ab,00,b0,11,b7,22,b6,21,95,00,a5,13,4b,0e,aa
1080 data cb,f8,86,cc,49,07,85,0b,a5,13,29,0f,d0,0f,a9,b8
1090 data 47,14,90,02,85,14,29,07,aa,b5,f7,85,12,a0,08,b7
1100 data 0d,91,0f,88,10,f9,a8,b7,09,91,03,88,d0,f9,4c,7e
1110 data ea,78,8e,86,02,8e,21,d0,20,44,e5,a2,fd,bd,02,08
1120 data 95,02,ca,d0,f8,8e,15,03,4c,cc,00,a9,50,8d,11,d0
1130 data 58,ad,04,dc,a0,c3,0d,1c,d4,48,4b,04,a0,30,8c,18
1140 data d0,71,cb,e6,cb,71,cb,6a,05,20,a0,58,05,d5,91,cb
1150 data d0,df,2b,aa,02,62,00,18,26,20,12,24,13,10,00,00
run
load"a-mind-is-born",8,1
run
have fun!
I am truly in awe and want to thank Linus Åkesson for this exceptional piece of art!
Anonymous
Sun 7-Jan-2024 03:35
Sun 7-Jan-2024 03:35
Hah, this actually worked quite well for me, very cool!
Anonymous
Sun 7-Jan-2024 17:25
Sun 7-Jan-2024 17:25
####################
#---#--#@#-##--#####
#-#-#--$----$--#####
#-#----######-$--###
#---#--#....#--$$--#
##$##$##....##-----#
#------#....##$##$##
#--$$--#....#--#---#
#-$--$--#-----###--#
#####--$---$----$--#
#####-#---###-#---##
####################
Title: Level 21
Author: Jean-Pierre Kent
#---#--#@#-##--#####
#-#-#--$----$--#####
#-#----######-$--###
#---#--#....#--$$--#
##$##$##....##-----#
#------#....##$##$##
#--$$--#....#--#---#
#-$--$--#-----###--#
#####--$---$----$--#
#####-#---###-#---##
####################
Title: Level 21
Author: Jean-Pierre Kent
Anonymous
Sun 7-Jan-2024 17:28
Sun 7-Jan-2024 17:28
####################
#---#--#@#-##--#####
#-#-#--$----$--#####
#-#----######-$--###
#---#--#....#--$$--#
##$##$##....##-----#
#------#....##$##$##
#--$$--#....#--#---#
#-$--$--#-----###--#
#####--$---$----$--#
#####-#---###-#---##
####################
#---#--#@#-##--#####
#-#-#--$----$--#####
#-#----######-$--###
#---#--#....#--$$--#
##$##$##....##-----#
#------#....##$##$##
#--$$--#....#--#---#
#-$--$--#-----###--#
#####--$---$----$--#
#####-#---###-#---##
####################
Anonymous
Tue 9-Jan-2024 02:45
Tue 9-Jan-2024 02:45
This one *actually* has to be impossible. All the moves are forced and create a deadlock afaik?
http://www.linusakesson.net/games/autosokoban/?v=1&seed=700559516&level=6
http://www.linusakesson.net/games/autosokoban/?v=1&seed=700559516&level=6
UULLUURDR, try solving from there :)
Anonymous
Tue 16-Jan-2024 03:16
Tue 16-Jan-2024 03:16
You are a genious!!!
The evolution of C64 games 1982–2023
Anonymous
Fri 19-Jan-2024 13:26
Fri 19-Jan-2024 13:26
What is the game in 1984 after Ghostbusters please? It totally looks like second level (prison) of Another World that came year later.
Anonymous
Fri 19-Jan-2024 13:31
Fri 19-Jan-2024 13:31
What is the game in 1984 after Ghostbusters please? It totally looks like second level (prison) of Another World that came year later.
* Years later (not a year)
lft
Linus Åkesson
Fri 19-Jan-2024 14:24
Linus Åkesson
Fri 19-Jan-2024 14:24
What is the game in 1984 after Ghostbusters please?
I've added the list of games now, by popular demand. I think you're referring to Impossible Mission.
Anonymous
Sat 20-Jan-2024 12:17
Sat 20-Jan-2024 12:17
wow !! very nice video! hugs to you and your husband!
jason_s
jason_s
lft
Linus Åkesson
Sat 20-Jan-2024 16:57
Linus Åkesson
Sat 20-Jan-2024 16:57
wow !! very nice video! hugs to you and your husband!
jason_s
jason_s
Well, wife if we're going to split hairs. But the hugs are appreciated!
Anonymous
Sun 21-Jan-2024 17:43
Sun 21-Jan-2024 17:43
Surprised by the beauty of this. I was expecting a discourse, possibly dry and lengthy and got something entirely different, something gorgeous and wonderful. Thank you for the work that went into this and for the moment to bond with a stranger in this way about a machine that has been a part of my life for so long.
Anonymous
Fri 26-Jan-2024 07:24
Fri 26-Jan-2024 07:24
Coming from 2024, great article!!