Jump to content

g0blinish

Members
  • Posts

    74
  • Joined

  • Last visited

Everything posted by g0blinish

  1. how to convert object file to executable binary? lost in mans (
  2. http://www.clipshop.ca/DiskImages/azgraphics33/rod33.htm It is hard to implement, but I try
  3. I need a video for the program: http://g0blinish.ucoz.ru/demo/sy17/bl256.zip thank you.
  4. I took an article "Sixteen colors and beyond; extended hi-res graphics on the Apple." from Creative_Computing_v11_n02_1985_Feb and typed source again Result is not what I expected. Maybe source has mistakes? hgr_1.asm MASTER.DSK
  5. if anyone knows, advice an example of MB speech, please
  6. Well, I see some viruses what has made with PureBasic(Ransom - WinLocker etc..) guess why harmless code detected. My Comodo keep silent. I include sources if someone wants to check. ataribook.zip
  7. During development I've simple tool. for ATASCII/Internal tab page is possible to switch between charsets - right click and choose one item from popup menu for 6502 opcodes is possible to sort list clicking by header. I'm not sure about right data for CPU instruction set. Any suggestions are appreciated. atabook.zip
  8. 1.Fighting with MockingBoard sound. simple .psg dump made from ZX Spectrum tune ain't sound as well 2. Dreaming to meet with GS.
  9. maybe in future. Some routines for Hi-res very difficult.And Prodos too.
  10. I took atasci logo from atari writer plus(Internal format) atari-1.zip
  11. I found one: https://www.dropbox.com/sh/bgtoq6tdwropzzr/AAAknv_0PeJGhn36dLJZfGASa btw zx7 is best compression tool.
  12. oops missed file LRP.zip
  13. Keys are: cursor arrows - move cursor 0-9,A-F - choose color space - plot by current color R - fill screen with current color P - pick color under cursor Z - (freeZe) - draw plots Save/Load coming soon. seems there are no routines for disk operations.
  14. What is algoritm of building loops? Do you plan to share sources?
  15. Here is decompiled source of player. To use it: ld hl,song;song is compiled Sound Tracker tune call stc_init each frame call stc_play About ST: it is not ready and also Sound Tracker Needs compiler. Maybe later? You may use Vortex Tracker(source of player also available, but one need to modify code), VT read Sound Tracker songs and other format, but player takes more cycles. what changed in code: ZX Spectrum ports replaced to Aquarius ports: l7fe3: ld hl,l7c72 xor a or (hl) ld a,0dh jr nz,l7ff1 sub 03h dec hl dec hl dec hl l7ff1: ld c,0fdh l7ff3: ld b,0ffh ;#FFFD - address AY-3-8910 ;#BFFD - data for reg AY-3-8910 out ($F7),a;;out ©,a ;;ld b,0bfh push af ld a,(hl):dec hl out ($F6),a;;outd pop af dec a jp p,l7ff3 ret ;;l7fe3: ld hl,l7c72 ;; xor a ;; or (hl) ;; ld a,0dh ;; jr nz,l7ff1 ;; sub 03h ;; dec hl ;; dec hl ;; dec hl ;;l7ff1: ld c,0fdh ;;l7ff3: ld b,0ffh ;; out ©,a ;; ld b,0bfh ;; outd ;; dec a ;; jp p,l7ff3 ;; ret stc_player.zip
  16. ZX Tune has ripper from Sound Tracker. I have decompiled ST player's source. some modifications in code and you have music.
  17. here is my attempt: http://www.pouet.net/prod.php?which=66288
  18. no, code works If i load binary without USR. Next Step is copy/paste: 45 n=14790 50 POKE 14341,INT(N/256):POKE 14340,N-256*PEEK(14341) 55 x=usr(0)
  19. how works Virtual Aquarius option: Util/Load Binary -- This is useful for assembly language program development. ? typed source and assembled with sjAsm: device zxspectrum128 ORG #6000 begin ld hl,$3400 lp: ld (hl),l:inc l:jr nz,lp ret;jr $ end display /d,end-begin savebin "test.bin",begin,end-begin no effect:(
×
×
  • Create New...