mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-25 09:30:58 +00:00
add AsmTest program, with experiments on MacsBug function names
This commit is contained in:
parent
4ab1a098d6
commit
58b700e49e
128
App2/AsmTest.s
Normal file
128
App2/AsmTest.s
Normal file
@ -0,0 +1,128 @@
|
|||||||
|
# Completely pointless test program to figure out how MacsBug function names work
|
||||||
|
|
||||||
|
# The format for MacsBug function names:
|
||||||
|
|
||||||
|
# if strlen(name) < 32:
|
||||||
|
# rts | jmp (%a0) // return instruction [required]
|
||||||
|
# .byte 0x80 + strlen(name)
|
||||||
|
# .ascii name
|
||||||
|
# .align 2,0
|
||||||
|
# .short literalBytes
|
||||||
|
# // literalBytes of data
|
||||||
|
# else: // 32 <= strlen(name) <= 255
|
||||||
|
# rts | jmp (%a0) // return instruction [required]
|
||||||
|
# .byte 0x80
|
||||||
|
# .byte strlen(name)
|
||||||
|
# .ascii name
|
||||||
|
# .align 2,0
|
||||||
|
# .short literalBytes
|
||||||
|
# // literalBytes of data
|
||||||
|
|
||||||
|
.section .text.startup,"ax",@progbits
|
||||||
|
.align 2
|
||||||
|
.globl main
|
||||||
|
.type main, @function
|
||||||
|
main:
|
||||||
|
link.w %fp,#0
|
||||||
|
dc.w 0xa9ff
|
||||||
|
moveq #0,%d0
|
||||||
|
|
||||||
|
|
||||||
|
move.w #42, -(%sp)
|
||||||
|
bsr foopas
|
||||||
|
|
||||||
|
move.w #42, -(%sp)
|
||||||
|
bsr foopas2
|
||||||
|
|
||||||
|
move.w #42, -(%sp)
|
||||||
|
bsr barpas
|
||||||
|
|
||||||
|
bsr quux
|
||||||
|
|
||||||
|
# Some weird control flow to see under what
|
||||||
|
# circumstances MacsBug recognizes function names:
|
||||||
|
bra .L1
|
||||||
|
unlk %fp
|
||||||
|
.L2:
|
||||||
|
rts
|
||||||
|
.L1:
|
||||||
|
moveq #1,%d0
|
||||||
|
unlk %fp
|
||||||
|
bra .L2
|
||||||
|
|
||||||
|
# MacsBug recognizes the function name only
|
||||||
|
# after rts and a few other instructions,
|
||||||
|
# so we just add a rts
|
||||||
|
rts
|
||||||
|
|
||||||
|
.byte 132
|
||||||
|
.ascii "main"
|
||||||
|
.align 2,0
|
||||||
|
# size of literals following function name
|
||||||
|
.short 0
|
||||||
|
.size main, .-main
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
foopas:
|
||||||
|
link.w %fp,#42
|
||||||
|
unlk %fp
|
||||||
|
move.l (%sp)+, %a0
|
||||||
|
addq #2, %sp
|
||||||
|
|
||||||
|
# MacsBug knows about jmp (%a0)
|
||||||
|
jmp (%a0)
|
||||||
|
.byte 134
|
||||||
|
.ascii "foopas"
|
||||||
|
.align 2,0
|
||||||
|
# size of literals following function name
|
||||||
|
.short 0
|
||||||
|
.size foopas, .-foopas
|
||||||
|
|
||||||
|
foopas2:
|
||||||
|
link.w %fp,#42
|
||||||
|
unlk %fp
|
||||||
|
move.l (%sp)+, %a1
|
||||||
|
addq #2, %sp
|
||||||
|
|
||||||
|
# MacsBug doesn't know about jmp (%a1)
|
||||||
|
jmp (%a1)
|
||||||
|
.byte 135
|
||||||
|
.ascii "foopas2"
|
||||||
|
.align 2,0
|
||||||
|
# size of literals following function name
|
||||||
|
.short 0
|
||||||
|
.size foopas2, .-foopas2
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
barpas:
|
||||||
|
link.w %fp,#42
|
||||||
|
unlk %fp
|
||||||
|
move.l (%sp)+, %a1
|
||||||
|
addq #2, %sp
|
||||||
|
jmp (%a1)
|
||||||
|
|
||||||
|
# ... but adding an extra rts doesn't hurt.
|
||||||
|
rts
|
||||||
|
.byte 134
|
||||||
|
.ascii "barpas"
|
||||||
|
.align 2,0
|
||||||
|
# size of literals following function name
|
||||||
|
.short 0
|
||||||
|
.size barpas, .-barpas
|
||||||
|
|
||||||
|
|
||||||
|
quux:
|
||||||
|
link.w %fp,#42
|
||||||
|
unlk %fp
|
||||||
|
rts
|
||||||
|
rts
|
||||||
|
.byte 152
|
||||||
|
# MacsBug doesn't recognize names with weird characters
|
||||||
|
.ascii "quux<X>::operator()(int)"
|
||||||
|
.align 2,0
|
||||||
|
# size of literals following function name
|
||||||
|
.short 0
|
||||||
|
.size quux, .-quux
|
||||||
|
|
@ -34,6 +34,13 @@ add_executable(Test
|
|||||||
add_executable(HelloWorld
|
add_executable(HelloWorld
|
||||||
hello.c
|
hello.c
|
||||||
)
|
)
|
||||||
|
|
||||||
|
enable_language(ASM)
|
||||||
|
add_executable(AsmTest
|
||||||
|
AsmTest.s
|
||||||
|
)
|
||||||
|
set_target_properties(AsmTest PROPERTIES LINKER_LANGUAGE C)
|
||||||
|
|
||||||
#target_link_libraries(Test :retrocrt.o)
|
#target_link_libraries(Test :retrocrt.o)
|
||||||
|
|
||||||
target_link_libraries(Test retrocrt)
|
target_link_libraries(Test retrocrt)
|
||||||
@ -50,6 +57,14 @@ add_custom_command(
|
|||||||
DEPENDS HelloWorld)
|
DEPENDS HelloWorld)
|
||||||
add_custom_target(HelloWorldAPPL ALL DEPENDS HelloWorld.bin)
|
add_custom_target(HelloWorldAPPL ALL DEPENDS HelloWorld.bin)
|
||||||
|
|
||||||
|
target_link_libraries(AsmTest retrocrt)
|
||||||
|
add_custom_command(
|
||||||
|
OUTPUT AsmTest.bin
|
||||||
|
COMMAND ${MAKE_APPL} -c AsmTest -o AsmTest
|
||||||
|
DEPENDS AsmTest)
|
||||||
|
add_custom_target(AsmTestAPPL ALL DEPENDS AsmTest.bin)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
set(UPLOAD_URL "" CACHE STRING "ftp url to upload to")
|
set(UPLOAD_URL "" CACHE STRING "ftp url to upload to")
|
||||||
if(UPLOAD_URL)
|
if(UPLOAD_URL)
|
||||||
|
Loading…
Reference in New Issue
Block a user