Author: quozl Date: Tue Apr 9 05:44:57 2013 New Revision: 3637 URL: http://tracker.coreboot.org/trac/openfirmware/changeset/3637
Log: fatfs, fix a stack effect comment
Modified: ofw/fs/fatfs/dirent.fth
Modified: ofw/fs/fatfs/dirent.fth ============================================================================== --- ofw/fs/fatfs/dirent.fth Wed Apr 3 09:47:53 2013 (r3636) +++ ofw/fs/fatfs/dirent.fth Tue Apr 9 05:44:57 2013 (r3637) @@ -54,8 +54,8 @@ ;
: file-size ( -- #bytes ) de_length lel@ ; -: file-date ( -- sec min hour ) de_date lew@ >dmy ; -: file-time ( -- day month year ) de_time lew@ >hms ; +: file-date ( -- day month year ) de_date lew@ >dmy ; +: file-time ( -- sec min hour ) de_time lew@ >hms ; : file-attributes ( -- bitmask ) de_attributes c@ ;
: file-cluster! ( cluster# -- )