External Data and Text - PowerPoint PPT Presentation

1 / 6
About This Presentation
Title:

External Data and Text

Description:

External Data and Text. Memory sections. Operating System ... skip 4*n .align n .section '.data' V1: .word 4. V2: .byte 5 .align 2. V3: .half 4. V4: .byte 6. ... – PowerPoint PPT presentation

Number of Views:76
Avg rating:3.0/5.0
Slides: 7
Provided by: mah138
Category:
Tags: data | external | skip | text

less

Transcript and Presenter's Notes

Title: External Data and Text


1
External Data and Text
2
Memory sections
  • Operating System
  • Text
  • Data
  • Bss
  • Stack
  • Location counter for each

0x0000
OS
0x2000
text
data
bss
stack
3
Text section
  • Executable text
  • Starting from address 0x2000
  • Program counter starts at zero

4
Data section
  • Initialized data
  • .section .data
  • V .word
  • V .byte
  • V .half
  • .skip 4n
  • .align n
  • .section .data
  • V1 .word 4
  • V2 .byte 5
  • .align 2
  • V3 .half 4
  • V4 .byte 6
  • .align 4
  • V5 .word 17

5
ASCII data
  • Enclose in for ASCII code
  • Character
  • Ch .byte 150
  • Ch .byte h
  • String
  • .ascii hello
  • .asciz hello

6
bss section
  • Zero initialized variables
  • .section .bss
  • .align 4
  • Ary .skip 4100
  • i_m .skip 4
  • .common ary, 4n, 4
Write a Comment
User Comments (0)
About PowerShow.com