- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
// ...
int datastack [ 4096 ] ;
int *dp = datastack ;
int push ( int x ) {
return *dp++ = x ;
}
int pop() {
return *--dp ;
}
// ...
void execute() {
((void(*)())pop())() ;
}
// ...
yet_another_one_shit 20.04.2018 18:14 # +1
ebp — указатель стека данных
yet_another_one_shit 20.04.2018 18:31 # 0
yet_another_one_shit 20.04.2018 18:46 # 0
Steve_Brown 20.04.2018 19:40 # +1
Какая-то наколенная стековая машинка.
yet_another_one_shit 20.04.2018 19:42 # 0