From f58d7e7d3090a8480ead93a53424b20102814c8e Mon Sep 17 00:00:00 2001 From: David Given Date: Tue, 11 Jun 2019 19:40:46 +0200 Subject: [PATCH] Add missing file. --- plat/cpm/libsys/asm.h | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 plat/cpm/libsys/asm.h diff --git a/plat/cpm/libsys/asm.h b/plat/cpm/libsys/asm.h new file mode 100644 index 000000000..f86b91104 --- /dev/null +++ b/plat/cpm/libsys/asm.h @@ -0,0 +1,13 @@ +#ifndef ASM_H +#define ASM_H + +! Declare segments (the order is important). + +.sect .text +.sect .rom +.sect .data +.sect .bss + +.sect .text + +#endif