Skip to content

Update index.md #192

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion notes/L10/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ A stack is a Last In First Out (LIFO) queue. Push and Pop are our two operation

As you push more items onto the stack, the more space in memory it occupies - it grows. As you pop items off of the stack, it shrinks. The core purpose of stacks is to allow for the temporary storage of values at runtime for later retrieval.

In the MSP430, the stack grows upward - from higher locations in memory to lower locations in memory.
In the MSP430, the stack grows upward - from higher locations in memory to lower locations in memory.it is basically most used for the Data structure and algorithm project.Stack are define in many ways in other languages. basically stack is use and most use in c and c++ better.

**Draw memory map.**

Expand Down