Skip to content

Commit ec4a222

Browse files
committed
added thumb assembler example, this is not part of an asm tutorial just
testing the new thumb assembler mods.
1 parent 7943545 commit ec4a222

File tree

7 files changed

+426
-212
lines changed

7 files changed

+426
-212
lines changed

tas/README

+18-13
Original file line numberDiff line numberDiff line change
@@ -3,20 +3,25 @@ This is a thumb assembler derived directly from the assembler in my
33
thumbulator project. The thumulator version remains the primary
44
version/home.
55

6-
I added some hardcoded machine code up front to get from arm to thumb
7-
and then if you bl hexstring, I tack on machine code to implement that
8-
function. hexstring takes r0 and prints it out on the uart in ascii.
6+
I added the .include directive in the original thumbulator this one has
7+
a base address, still flushing that out.
98

10-
Since I got it working I dont want to just discard it, but not sure
11-
what I want to do with this...I provided binaries for the bootloaders
12-
so that you dont have to have arm tools, which is why you would use tas
13-
because you want to try asm but dont want to try or have failed to build
14-
gnu binutils. tas should build most anywhere.
9+
This is headed towards a learn assembly tutorial using this easy to
10+
compile tool if building binutils is not working for you or too
11+
intimidating right now. Also binutils separates assemble and link
12+
and linker scripts are a programming language themselves.
1513

16-
One simple test program provided, thats it
14+
by adding .include things like the little bit of arm code needed to
15+
get you into thumb mode. And a pre-compiled implementation of hexstring
16+
and uart_init so you dont have to have tools or understand how that
17+
code works to get started in the environment I invision for a learn
18+
asm tutorial.
1719

18-
./tas test.s
20+
If you dont have anything to talk to the uart (see top level readme)
21+
then the blinker example should work at a minimum
1922

20-
then use a bootloader to load test.s.bin. Since the test program + tas
21-
require the mini uart to be initialized simply copying test.s.bin to
22-
kernel.img wont do you any good.
23+
./tas blinker01.s
24+
25+
gives you blinker01.s.bin which you should be able to copy to kernel.img
26+
on your sd card and when you power cycle it should come up and blink the
27+
led.

tas/armstart.s

+43-15
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,46 @@
11

2-
.globl _start
3-
_start:
4-
b reset
5-
reset:
6-
ldr sp,stack_start
7-
ldr r0,thumb_start_add
8-
bx r0
2+
; 00000000 <_start>:
3+
; 0: eaffffff b 4 <reset>
4+
;
5+
; 00000004 <reset>:
6+
; 4: e59fd004 ldr sp, [pc, #4] ; 10 <stack_start>
7+
; 8: e59f0004 ldr r0, [pc, #4] ; 14 <thumb_start_add>
8+
; c: e12fff10 bx r0
9+
;
10+
; 00000010 <stack_start>:
11+
; 10: 08000000
12+
;
13+
; 00000014 <thumb_start_add>:
14+
; 14: 00000021
15+
; 18: 00000000
16+
; 1C: 00000000
17+
;
18+
; 00000020 <thumb_start>:
19+
;
20+
;0x00000000
21+
.hword 0xFFFF
22+
.hword 0xEAFF
23+
;0x00000004
24+
.hword 0xD004
25+
.hword 0xE59F
26+
;0x00000008
27+
.hword 0x0004
28+
.hword 0xE59F
29+
;0x0000000C
30+
.hword 0xFF10
31+
.hword 0xE12F
32+
;0x00000010
33+
.hword 0x0000
34+
.hword 0x0800
35+
;0x00000014
36+
.hword 0x8021
37+
.hword 0x0000
38+
;0x00000018
39+
.hword 0x0000
40+
.hword 0x0000
41+
;0x0000001C
42+
.hword 0x0000
43+
.hword 0x0000
44+
;0x00000020
945

10-
stack_start: .word 0x1000
11-
thumb_start_add: .word thumb_start
12-
.word 0
13-
.word 0
1446

15-
.thumb
16-
.thumb_func
17-
thumb_start:
18-
b .

tas/armstart_source.s

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
2+
.globl _start
3+
_start:
4+
b reset
5+
reset:
6+
ldr sp,stack_start
7+
ldr r0,thumb_start_add
8+
bx r0
9+
10+
stack_start: .word 0x1000
11+
thumb_start_add: .word thumb_start
12+
.word 0
13+
.word 0
14+
15+
.thumb
16+
.thumb_func
17+
thumb_start:
18+
b .

tas/blinker01.s

+44
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
2+
.include armstart.s
3+
4+
;configure gpio as an output
5+
ldr r0,GPFSEL1
6+
ldr r1,[r0]
7+
8+
;ra&=~(7<<18); zero bits 18,19,20
9+
mov r2,#0x7
10+
lsl r2,r2,#18
11+
bic r1,r2
12+
;ra|=1<<18; set bit 18
13+
mov r2,#0x1
14+
lsl r2,r2,#18
15+
orr r1,r2
16+
str r1,[r0]
17+
18+
;prepare registers for loop
19+
ldr r0,GPSET0
20+
ldr r1,GPCLR0
21+
mov r2,#1
22+
lsl r3,r2,#16 ;(1<<16)
23+
lsl r4,r2,#24 ;start count for counting loop
24+
top:
25+
str r3,[r0]
26+
27+
mov r5,r4
28+
on:
29+
sub r5,#1
30+
bne on
31+
32+
str r3,[r1]
33+
34+
mov r5,r4
35+
off:
36+
sub r5,#1
37+
bne off
38+
39+
b top
40+
41+
.align
42+
GPFSEL1: .word 0x20200004
43+
GPSET0: .word 0x2020001C
44+
GPCLR0: .word 0x20200028

tas/hexstring.s

+46
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
.align
2+
hexstring:
3+
.hword 0xB5FE;
4+
.hword 0x4913;
5+
.hword 0x4e13;
6+
.hword 0x2420;
7+
.hword 0x270f;
8+
.hword 0x2220;
9+
.hword 0x3c04;
10+
.hword 0x1c03;
11+
.hword 0x40e3;
12+
.hword 0x403b;
13+
.hword 0x1c1d;
14+
.hword 0x3530;
15+
.hword 0x2b09;
16+
.hword 0xd900;
17+
.hword 0x3507;
18+
.hword 0x680b;
19+
.hword 0x421a;
20+
.hword 0xd0fc;
21+
.hword 0x6035;
22+
.hword 0x2c00;
23+
.hword 0xd1f0;
24+
.hword 0x4909;
25+
.hword 0x2220;
26+
.hword 0x680b;
27+
.hword 0x421a;
28+
.hword 0xd0fc;
29+
.hword 0x4b07;
30+
.hword 0x220d;
31+
.hword 0x4905;
32+
.hword 0x601a;
33+
.hword 0x2220;
34+
.hword 0x680b;
35+
.hword 0x421a;
36+
.hword 0xd0fc;
37+
.hword 0x4b03;
38+
.hword 0x220a;
39+
.hword 0x601a;
40+
.hword 0xbcfe;
41+
.hword 0xbc01;
42+
.hword 0x4700;
43+
.hword 0x5054;
44+
.hword 0x2021;
45+
.hword 0x5040;
46+
.hword 0x2021;

0 commit comments

Comments
 (0)