Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Topics - Soulthym

Pages: [1]
1
Introduce Yourself! / Hi everyone, Soulthym here
« on: April 12, 2014, 08:46:21 am »
Hi everyone! So I'm Soulthym, a 17 years old student. I've been programming last year in Axe mainly but ASM z80, Basic and Grammer too! I have a pseudo TI 83+fr which is actually a Ti84+ SE^^
So I'm french and I'm glad to be back into that community I left last year. \(^-^)/

2
ASM / Looking for a fast 3 bytes left rotation(axe friendly)
« on: July 19, 2013, 09:16:04 am »
Hi! everyone,I was wondering how to make a really fast 3 bytes rotation routine(or not) that is axe friendly, so I came out with this:
Code: [Select]
ld a,(hl)
inc hl
ld b,(hl)
inc hl
ld c,(hl)
ld d,a
rl d
rl c
rl b
rl a
ld (hl),c
dec hl
ld (hl),b
dec hl
ld (hl),a
The hex code is like that
Code: [Select]
7E
23
46
23
4E
57
CB12
CB11
CB10
CB17
71
2B
70
2B
77
Please don't forget it must be axe friendly, so we use it like that:
Code: [Select]
.pointer
Pic1
Asm(7E2346234E57CB12CB11CB10CB17712B702B77)

Sorry if my English is bad, I'm French

Pages: [1]