1 IKI10230 Pengantar Organisasi Komputer Kuliah no. 12: Tugas No. 4 Sumber: 1. Paul Carter, PC Assembly Language 2. Hamacher. Computer Organization, ed-5 3. Materi kuliah CS61C/2000 & CS152/1997, UCB 4. Intel Architecture Software Developer’s Manual 19 Mei 2004 L. Yohanes Stefanus Bobby Nazief bahan kuliah:
2 Tugas Pemrograman #4: Subroutine Call void read_n_string(char *str, int len) { /* read up to ‘len’ characters, including one terminal */ } int dict_lookup(char *key) { /* compare string ‘key’ to a set of strings stored in dictionary */ } main() { char keyword[8]; read_string(keyword, 8); int found = dict_lookup(keyword); } °gunakan subprogram dict_lookup (pada tugas 2) °implementasikan read_n_string (modifikasi dari read_string) sebagai sebuah subprogram °gunakan stack untuk melakukan parameter-passing
3 SELAMAT BEKERJA!