23 lines
453 B
ArmAsm
23 lines
453 B
ArmAsm
|
#
|
||
|
/*
|
||
|
* Raspberry Pi support library for the ACK
|
||
|
* © 2013 David Given
|
||
|
* This file is redistributable under the terms of the 3-clause BSD license.
|
||
|
* See the file 'Copying' in the root of the distribution for the full text.
|
||
|
*/
|
||
|
|
||
|
! Declare segments (the order is important).
|
||
|
|
||
|
.sect .text
|
||
|
.sect .rom
|
||
|
.sect .data
|
||
|
.sect .bss
|
||
|
|
||
|
.sect .bss
|
||
|
|
||
|
! This data block is used to store information about the current line number
|
||
|
! and file.
|
||
|
|
||
|
.define hol0
|
||
|
.comm hol0, 8
|